Skip to content

Commit

Permalink
Further actions changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Duncan Ferguson committed Oct 14, 2024
1 parent 2d39fe4 commit 4373727
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/dzil_tester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ jobs:
- 5.20
- 5.18
- 5.16
include:
- perl-version: '5.38'
os: ubuntu-latest
coverage: true
container:
image: perldocker/perl-tester:${{ matrix.perl-version }}

Expand All @@ -35,11 +39,21 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Regular tests
if: ${{ !matrix.coverage }}
run: |
cpanm -n -f Pod::Coverage::TrustPod Test::Perl::Critic Test::Pod::Coverage Test::Pod
perl Build.PL
perl Build test
env:
- COVERAGE=1
- RELEASE_TESTING=1
- AUTHOR_TESTING=1
RELEASE_TESTING: 1
AUTHOR_TESTING: 1
- name: Coverage tests
if: ${{ matrix.coverage }}
run: |
cpanm -n -f Pod::Coverage::TrustPod Test::Perl::Critic Test::Pod::Coverage Test::Pod
perl Build.PL
perl Build test
env:
COVERAGE: 1
RELEASE_TESTING: 1
AUTHOR_TESTING: 1

0 comments on commit 4373727

Please sign in to comment.