File tree 3 files changed +49
-17
lines changed
3 files changed +49
-17
lines changed Original file line number Diff line number Diff line change
1
+ name : linux
2
+
3
+ on :
4
+ push :
5
+ branches : [ '*' ]
6
+ pull_request :
7
+ branches : [ master ]
8
+ workflow_dispatch :
9
+ branches : [ '*' ]
10
+
11
+ jobs :
12
+
13
+ perl :
14
+ runs-on : ubuntu-latest
15
+ strategy :
16
+ matrix :
17
+ perl-version :
18
+ - ' 5.12-buster'
19
+ - ' 5.14-buster'
20
+ - ' 5.16-buster'
21
+ - ' 5.18-buster'
22
+ - ' 5.20-buster'
23
+ - ' 5.22-buster'
24
+ - ' 5.24-buster'
25
+ - ' 5.26-buster'
26
+ - ' 5.28-buster'
27
+ - ' 5.30-bullseye'
28
+ - ' 5.32-bullseye'
29
+ - ' 5.34-bullseye'
30
+ - ' 5.36-bookworm'
31
+ - ' 5.38-bookworm'
32
+ - ' latest'
33
+
34
+ container :
35
+ image : perl:${{ matrix.perl-version }}
36
+
37
+ steps :
38
+ - uses : actions/checkout@v3
39
+ - run : env | sort
40
+ - run : perl -V
41
+ - name : Install deps
42
+ run : >
43
+ cpanm --quiet --notest
44
+ Test::Deep List::MoreUtils YAML::PP Text::Table Ref::Util Moo
45
+ Module::Runtime List::Util
46
+ - name : Run Tests
47
+ run : prove -lr t
48
+
Original file line number Diff line number Diff line change @@ -3,3 +3,4 @@ pod2htmd.tmp
3
3
cover_db
4
4
dev
5
5
local
6
+ .build
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments