Skip to content

Commit

Permalink
Merge c92ccda into 0417335
Browse files Browse the repository at this point in the history
  • Loading branch information
gugod committed Jun 3, 2023
2 parents 0417335 + c92ccda commit db4d71a
Showing 1 changed file with 16 additions and 19 deletions.
35 changes: 16 additions & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,6 @@ name: CI
on: pull_request

jobs:
lint:
runs-on: ubuntu-latest
container:
image: perl:5.32
steps:
- uses: actions/checkout@v2
- uses: gugod/action-perlcritic@fun
with:
directory: "lib script t dev-bin"
- name: install perlnitpick
run: cpanm --notest --quiet App::PerlNitpick
- name: run perlnitpick
run: perlnitpick --inplace --rules=RemoveTrailingWhitespace,RemoveUnusedVariables,RemoveUnusedInclude,RemoveUnusedImport .
- name: suggester
uses: reviewdog/action-suggester@v1
with:
tool_name: perlnitpick

yath:
runs-on: ubuntu-latest
strategy:
Expand All @@ -40,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
perl: [ '5.8', '5.10' ]
perl: ['5.12', '5.14']
container:
image: perl:${{ matrix.perl }}
name: Perl ${{ matrix.perl }}
Expand All @@ -50,3 +32,18 @@ jobs:
- run: cpanm --quite --notest --installdeps .
- run: cpanm --quite --notest App::Prove
- run: prove -lrv t

prove_legacy:
runs-on: ubuntu-latest
strategy:
matrix:
perl: ['5.8', '5.10']
container:
image: perl:${{ matrix.perl }}
name: Perl ${{ matrix.perl }}
steps:
- uses: actions/checkout@v2
- run: perl -V
- run: cpanm --quite --notest Pod::Man@4.10 Test::Deep@1.130 App::Prove
- run: cpanm --quite --notest --installdeps .
- run: prove -lrv t

0 comments on commit db4d71a

Please sign in to comment.