Skip to content

Commit b12fb9b

Browse files
committed
Add GitHub workflow
and remove old .travis.yml
1 parent 654a702 commit b12fb9b

File tree

3 files changed

+49
-17
lines changed

3 files changed

+49
-17
lines changed

.github/workflows/linux.yaml

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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+

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ pod2htmd.tmp
33
cover_db
44
dev
55
local
6+
.build

.travis.yml

-17
This file was deleted.

0 commit comments

Comments
 (0)