This repository was archived by the owner on Nov 24, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change 6
6
7
7
jobs :
8
8
validating :
9
- runs-on : self-hosted-novum
9
+ runs-on : [self-hosted, linux]
10
+ strategy :
11
+ matrix :
12
+ puppet-version : [5, 6, 7]
10
13
steps :
11
14
- name : Clone repository
12
15
uses : actions/checkout@v2
13
16
14
17
- name : Run pdk validate
15
18
uses : puppets-epic-show-theatre/action-pdk-validate@v1
16
19
with :
17
- # [optional]
18
- # A string indicating the Puppet version to validate against, such as "5.4.2" or "5.5".
19
- puppet-version : " 5.5"
20
+ puppet-version : ${{ matrix.puppet-version }}
20
21
21
22
testing :
22
- runs-on : self-hosted-novum
23
+ runs-on : [self-hosted, linux]
24
+ strategy :
25
+ matrix :
26
+ puppet-version : [5, 6, 7]
23
27
if : always()
24
28
needs :
25
29
- validating
31
35
uses : puppets-epic-show-theatre/action-pdk-test-unit@v1
32
36
# added because there are open ended dependencies version requirements in metadata.json
33
37
with :
34
- # [optional]
35
- # A string indicating the Puppet version to validate against, such as "5.4.2" or "5.5".
36
- puppet-version : " 5.5"
38
+ puppet-version : ${{ matrix.puppet-version }}
You can’t perform that action at this time.
0 commit comments