Skip to content

Commit

Permalink
Run unit tests across multiple Perl versions
Browse files Browse the repository at this point in the history
  • Loading branch information
paultcochrane committed May 3, 2024
1 parent 962419e commit d5005d4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,15 @@ on:
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
perl: ['5.38', '5.36', '5.34']
name: Perl ${{ matrix.perl }}
steps:
- uses: actions/checkout@v4
- uses: shogo82148/actions-setup-perl@v1
with:
perl-version: '5.30'
- run: perl -v
perl-version: ${{ matrix.perl }}
- run: cpanm --installdeps --with-develop --notest .
- run: |
perl Makefile.PL
Expand Down

0 comments on commit d5005d4

Please sign in to comment.