Skip to content

Commit

Permalink
Latest Github actions file
Browse files Browse the repository at this point in the history
  • Loading branch information
Nigel Horne committed Feb 9, 2022
1 parent 306faf1 commit 3453319
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/all.yml → .github/workflows/test.yml
@@ -1,3 +1,4 @@
---
on:
push:
branches:
Expand All @@ -9,9 +10,15 @@ jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ['windows-latest', 'macos-latest', 'ubuntu-latest']
perl: [ '5.30', '5.28' ]
os:
- macos-latest
- ubuntu-18.04
- ubuntu-20.04
- windows-2019
- windows-2016
perl: ['5.34', '5.32', '5.30', '5.28', '5.22']
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
Expand All @@ -27,3 +34,5 @@ jobs:
cpanm -iqn --skip-satisfied --installdeps --notest .
- name: Run Tests
run: prove -l -b t
env:
AUTHOR_TESTING: 1

0 comments on commit 3453319

Please sign in to comment.