-
-
Notifications
You must be signed in to change notification settings - Fork 23
59 lines (51 loc) · 1.24 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: CI Tests
on: [ push, pull_request ]
jobs:
perl_tester:
runs-on: ubuntu-latest
name: "perl v${{ matrix.perl-version }}"
strategy:
fail-fast: false
matrix:
perl-version:
- "5.32"
- "5.28"
- "5.26"
container:
image: perl:${{ matrix.perl-version }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install Perl Modules with cpanm
uses: perl-actions/install-with-cpanm@v1
continue-on-error: true
with:
install: |
Regexp::Common
Config::Tiny
File::ShareDir
Net::DNS::Resolver
DBD::SQLite
DBD::Pg
DBD::mysql
Net::IP
Socket6
Email::MIME
Net::SMTPS
XML::LibXML
Email::Sender
DBIx::Simple
HTTP::Tiny
Test::File::ShareDir
Test::Output
Test::Exception
Net::IDN::Encode
CGI
XML::Validator::Schema
Net::DNS::Resolver::Mock
sudo: false
- run: perl Makefile.PL
- name: Run CI Tests
run: make test