-
-
Notifications
You must be signed in to change notification settings - Fork 23
61 lines (53 loc) · 1.36 KB
/
codecov.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
60
61
name: Coverage Test
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.30"
container:
image: perl:${{ matrix.perl-version }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install Perl Modules
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::HTTP
Net::SMTPS
XML::LibXML
Email::Sender
DBIx::Simple
HTTP::Tiny
Test::File::ShareDir
Test::Output
Test::Exception
Net::IDN::Encode
CGI
XML::Validator::Schema
Devel::Cover::Report::Coveralls
Net::DNS::Resolver::Mock
sudo: false
- run: perl Makefile.PL
- name: Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: cover -test -report coveralls