-
Notifications
You must be signed in to change notification settings - Fork 3
160 lines (140 loc) · 3.92 KB
/
check.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
---
name: check
on: [push]
jobs:
cpanm:
runs-on: ubuntu-latest
name: 'install cpanm'
steps:
- uses: actions/checkout@v4
- name: uses install-with-cpanm
uses: ./
- name: which cpanm
run: which cpanm
### ------------------------------------------------
### Install a single module
### ------------------------------------------------
one_module:
runs-on: ubuntu-latest
name: 'cpanm and a module'
steps:
- uses: actions/checkout@v4
- name: uses install-with-cpanm
uses: ./
with:
install: 'Simple::Accessor'
- run: perl -MSimple::Accessor -e1
### ------------------------------------------------
### Install multiple modules
### ------------------------------------------------
multiple_modules:
runs-on: ubuntu-latest
name: 'cpanm & modules'
steps:
- uses: actions/checkout@v4
- name: uses install-with-cpanm
uses: ./
with:
install: |
Simple::Accessor
abbreviation
- run: perl -MSimple::Accessor -e1
- run: perl -Mabbreviation -e1
### ------------------------------------------------
### Install modules from a cpanfile
### ------------------------------------------------
cpanfile_root:
runs-on: ubuntu-latest
name: 'cpanfile as root'
steps:
- uses: actions/checkout@v4
- name: 'Create a cpanfile'
run: |
echo "requires 'Simple::Accessor';" > cpanfile.test
- name: uses install-with-cpanm
uses: ./
with:
cpanfile: 'cpanfile.test'
- run: perl -MSimple::Accessor -e1
cpanfile_nonroot:
runs-on: ubuntu-latest
name: 'cpanfile nonroot local::lib'
steps:
- uses: actions/checkout@v4
- name: 'Create a cpanfile'
run: |
echo "requires 'Simple::Accessor';" > cpanfile.test
- name: uses install-with-cpanm
uses: ./
with:
path: 'cpanm-local'
cpanfile: 'cpanfile.test'
sudo: false
args: '-L vendor'
- run: sudo perl cpanm-local local::lib
- run: perl -Mlocal::lib=--no-create,vendor -MSimple::Accessor -e1
### ------------------------------------------------
### Install a module and enable tests
### ------------------------------------------------
with_tests:
runs-on: ubuntu-latest
name: 'install with tests'
steps:
- uses: actions/checkout@v4
- name: uses install-with-cpanm
uses: ./
with:
install: 'Simple::Accessor'
tests: true
args: '-v'
- run: perl -MSimple::Accessor -e1
### ------------------------------------------------
### check perl-tester
### ------------------------------------------------
perl_tester:
runs-on: ubuntu-latest
name: 'perl v${{ matrix.perl-version }}'
strategy:
fail-fast: false
matrix:
perl-version:
- '5.38'
- '5.36'
- '5.34'
- '5.32'
- '5.30'
- '5.28'
# ...
container:
image: perldocker/perl-tester:${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v4
- name: uses install-with-cpanm
uses: ./
with:
sudo: false
install: |
abbreviation
ACH
# checking that both modules are installed
- run: perl -Mabbreviation -e1
- run: perl -MACH -e1
## ------------------------------------------------
## testing with windows
## ------------------------------------------------
windows:
runs-on: windows-latest
name: 'windows'
steps:
- name: perl -V
run: perl -V
- uses: actions/checkout@v4
- name: 'install-with-cpanm'
uses: ./
with:
install: |
abbreviation
ACH
# checking that both modules are installed
- run: perl -Mabbreviation -e1
- run: perl -MACH -e1