We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f502590 + 4879c91 commit 5586c4eCopy full SHA for 5586c4e
.github/workflows/perl-tests.yaml
@@ -0,0 +1,27 @@
1
+name: Perl Tests
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - master
8
9
+permissions: read-all
10
11
+jobs:
12
+ build:
13
+ runs-on: ${{ matrix.os }}
14
+ strategy:
15
+ matrix:
16
+ os: ['ubuntu-latest']
17
+ perl: [ '5.36', '5.34', '5.20' ]
18
+ name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
19
+ steps:
20
+ - uses: actions/checkout@v3
21
+ - name: Set up perl
22
+ uses: shogo82148/actions-setup-perl@v1
23
+ with:
24
+ perl-version: ${{ matrix.perl }}
25
+ - run: perl -V
26
+ - run: cpanm --installdeps .
27
+ - run: prove -lv t
0 commit comments