File tree Expand file tree Collapse file tree 2 files changed +37
-29
lines changed Expand file tree Collapse file tree 2 files changed +37
-29
lines changed Original file line number Diff line number Diff line change
1
+ name : Run tests
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ test-matrix :
7
+ name : ${{ matrix.platform.os-name }} with Perl ${{ matrix.perl-version }}
8
+ runs-on : ${{ matrix.platform.runs-on }}
9
+ strategy :
10
+ fail-fast : false
11
+ matrix :
12
+ platform :
13
+ - os-name : Linux
14
+ runs-on : ubuntu-24.04
15
+
16
+ perl-version :
17
+ - " 5.40"
18
+ # - 5.14
19
+
20
+ steps :
21
+ - uses : actions/checkout@v4
22
+
23
+ - uses : shogo82148/actions-setup-perl@v1
24
+ with :
25
+ perl-version : ${{ matrix.perl-version }}
26
+
27
+ - name : Install Dist::Zilla and Test::Harness
28
+ run : cpm install --global Dist::Zilla Test::Harness
29
+
30
+ - name : Install author deps
31
+ run : cpm install --global $(dzil authordeps)
32
+
33
+ - name : Install module deps
34
+ run : cpm install --global $(dzil listdeps --all)
35
+
36
+ - name : Run tests
37
+ run : dzil test --all
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments