From 17bd949e14f0faa5f8b47333f6dab5c7de40f0e9 Mon Sep 17 00:00:00 2001 From: Duncan Ferguson Date: Tue, 15 Oct 2024 20:55:42 +0100 Subject: [PATCH] Correct perl docker tags for devel and latest --- .github/workflows/dzil_tester.yml | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/.github/workflows/dzil_tester.yml b/.github/workflows/dzil_tester.yml index 7697946..7a53222 100644 --- a/.github/workflows/dzil_tester.yml +++ b/.github/workflows/dzil_tester.yml @@ -13,7 +13,8 @@ jobs: fail-fast: false matrix: perl-version: - - '5.41' + - 'devel' + - 'latest' - '5.40' - '5.38' - '5.36' @@ -45,23 +46,21 @@ jobs: run: env - name: Perl info run: perl -V + - name: CPAN modules + run: cpanm -n Pod::Coverage::TrustPod Test::Perl::Critic Test::Pod::Coverage Test::Pod Test::Trap + - name: Initial Build + run: perl Build.PL + - name: Build the MANIFEST + run: perl Build manifest - name: Regular tests if: ${{ !matrix.coverage }} - run: | - cpanm -n -f Pod::Coverage::TrustPod Test::Perl::Critic Test::Pod::Coverage Test::Pod Test::Trap - perl Build.PL - perl Build manifest - perl Build test + run: perl Build test env: 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 Test::Trap - perl Build.PL - perl Build manifest - perl Build test + run: perl Build test env: COVERAGE: 1 RELEASE_TESTING: 1