Skip to content

Commit

Permalink
Adjust testsuite for perl-versions
Browse files Browse the repository at this point in the history
  • Loading branch information
atoomic committed Apr 27, 2024
1 parent 1484814 commit 7a76fb4
Showing 1 changed file with 21 additions and 24 deletions.
45 changes: 21 additions & 24 deletions .github/workflows/testsuite.yml
Expand Up @@ -19,18 +19,32 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: perl -V
- name: install dependencies
uses: perl-actions/install-with-cpm@stable
uses: perl-actions/install-with-cpm@v1
with:
cpanfile: "cpanfile"
- name: prove tests
run: prove -vl t/*.t

perl-versions:
runs-on: ubuntu-latest
name: List Perl versions
outputs:
perl-versions: ${{ steps.action.outputs.perl-versions }}
steps:
- id: action
uses: perl-actions/perl-versions@v1
with:
since-perl: v5.14
with-devel: false

linux:
name: "linux ${{ matrix.perl-version }}"
needs: [ubuntu]
needs:
- ubuntu
- perl-versions
env:
PERL_USE_UNSAFE_INC: 0
AUTHOR_TESTING: 1
Expand All @@ -42,32 +56,15 @@ jobs:
strategy:
fail-fast: false
matrix:
perl-version:
[
"5.36",
"5.34",
"5.32",
"5.30",
"5.28",
"5.26",
"5.24",
"5.22",
"5.20",
"5.18",
"5.16",
"5.14",
"5.12",
"5.10",
]
perl-version: ${{ fromJson (needs.perl-versions.outputs.perl-versions) }}

container:
image: perl:${{ matrix.perl-version }}
container: perldocker/perl-tester:${{ matrix.perl-version }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: perl -V
- name: install dependencies
uses: perl-actions/install-with-cpm@stable
uses: perl-actions/install-with-cpm@v1
with:
sudo: false
cpanfile: "cpanfile"
Expand Down

0 comments on commit 7a76fb4

Please sign in to comment.