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 18424ca
Showing 1 changed file with 17 additions and 22 deletions.
39 changes: 17 additions & 22 deletions .github/workflows/testsuite.yml
Expand Up @@ -19,15 +19,27 @@ 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.10
with-devel: false

linux:
name: "linux ${{ matrix.perl-version }}"
needs: [ubuntu]
Expand All @@ -42,29 +54,12 @@ 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
Expand Down

0 comments on commit 18424ca

Please sign in to comment.