Skip to content

Commit

Permalink
Merge pull request #1 from zmughal-contrib/ci
Browse files Browse the repository at this point in the history
Use shared CI actions
  • Loading branch information
kjetilk committed Jan 11, 2024
2 parents 08f14b9 + 61b6bff commit 4f943cd
Show file tree
Hide file tree
Showing 5 changed files with 119 additions and 2 deletions.
93 changes: 93 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
name: Run Tests

on:
workflow_dispatch:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
create:

jobs:
notify:
runs-on: ubuntu-latest
continue-on-error: true
if: ${{ always() }}
steps:
- uses: perlrdf/devops/github-actions/irc-notifications@main
with:
target-notifications: true
dist:
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' }}
name: Make distribution
runs-on: ubuntu-latest
outputs:
min-perl-version: ${{ steps.build-dist.outputs.min-perl-version }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- id: build-dist
uses: perlrdf/devops/github-actions/build-dist@main
with:
dist-perl-deps-develop: >-
Attean
Test::Signature
Test::Perl::Critic
Test::Pod::Coverage
Test::Pod
Pod::Coverage::Moose
test:
needs: [ 'dist', 'notify' ]
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
perl: ['5']
include:
- { os: 'ubuntu-latest', perl: "5.32" }
- { os: 'ubuntu-latest', perl: "5.30" }
- { os: 'ubuntu-latest', perl: "5.20" }
- { os: 'ubuntu-latest', perl: "5.16" }
- { os: 'ubuntu-latest', perl: "5.14" }
# Not testing this for now due to Attean (requires Perl 5.14)
#- { os: 'ubuntu-latest', perl: "${{ needs.dist.outputs.min-perl-version }}" }
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}

steps:
- name: Get dist artifact
uses: actions/download-artifact@v3
with:
name: dist

- name: Set up perl
uses: shogo82148/actions-setup-perl@v1
if: matrix.os != 'windows-latest'
with:
perl-version: ${{ matrix.perl }}
- name: Set up perl (Strawberry)
uses: shogo82148/actions-setup-perl@v1
if: matrix.os == 'windows-latest'
with:
distribution: 'strawberry'

- run: perl -V

- name: Install Perl deps
run: |
cpanm --notest --installdeps .
- name: Run tests
run: |
cpanm --verbose --test-only .
build-status:
runs-on: ubuntu-latest
continue-on-error: true
if: ${{ always() }}
needs: test
steps:
- uses: perlrdf/devops/github-actions/irc-notifications@main
with:
target-build-status: true
needs: ${{ toJSON(needs) }}
21 changes: 21 additions & 0 deletions .github/workflows/issue-notify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: issue-notify

on:
issues:
types: [opened,assigned,closed,reopened]
issue_comment:
types: [created]
pull_request:
types: [closed,assigned,converted_to_draft,ready_for_review,review_requested]
pull_request_review:
types: [submitted]

jobs:
notify:
runs-on: ubuntu-latest
continue-on-error: true
if: ${{ always() }}
steps:
- uses: perlrdf/devops/github-actions/irc-notifications@main
with:
target-notifications: true
1 change: 1 addition & 0 deletions dist.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
;;class='Dist::Inkt::Profile::TOBYINK'
;;name='Test-EARL-Reports'
;;skip_whitespace_test=1

2 changes: 1 addition & 1 deletion lib/Test/EARL/Reports.pm
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package Test::EARL::Reports;
use 5.010001;
use strict;
use warnings;

package Test::EARL::Reports;
use Attean;
use Attean::RDF qw(iri);
use Moo;
Expand Down
4 changes: 3 additions & 1 deletion meta/people.pret
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,7 @@

cpan:KJETILK
:name "Kjetil Kjernsmo";
owl:sameAs result:user-Kjetil Kjernsmo.
:page <https://metacpan.org/author/KJETILK>;
:mbox <mailto:[email protected]>;
owl:sameAs <http://www.kjetil.kjernsmo.net/foaf#me> , result:user-Kjetil-Kjernsmo .

0 comments on commit 4f943cd

Please sign in to comment.