forked from daxim/Module-CPANTS-Analyse
-
Notifications
You must be signed in to change notification settings - Fork 15
65 lines (54 loc) · 1.35 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
60
61
62
63
name: CI
on:
push:
pull_request:
workflow_dispatch:
# schedule:
# - cron: '42 5 * * *'
jobs:
test:
strategy:
fail-fast: false
matrix:
runner: [ubuntu-latest, macos-latest, windows-latest]
perl: [ '5.30', '5.36' ]
exclude:
- runner: windows-latest
perl: '5.36'
runs-on: ${{matrix.runner}}
name: OS ${{matrix.runner}} Perl ${{matrix.perl}}
steps:
- uses: actions/checkout@v3
- name: Set up perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
distribution: ${{ ( matrix.runner == 'windows-latest' && 'strawberry' ) || 'default' }}
- name: Show Perl Version
run: |
perl -v
- name: Install Modules
run: |
cpanm -v
cpanm --installdeps --with-develop --notest .
# --with-configure
# --with-recommends, --with-suggests
cpanm -n Test::File
- name: Run tests
#env:
# AUTHOR_TESTING: 1
# RELEASE_TESTING: 1
if: ${{matrix.runner == 'windows-latest'}}
run: |
perl Makefile.PL
gmake
gmake test
- name: Run tests
#env:
# AUTHOR_TESTING: 1
# RELEASE_TESTING: 1
if: ${{matrix.runner != 'windows-latest'}}
run: |
perl Makefile.PL
make
make test