File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 14
14
jobs :
15
15
16
16
spec :
17
+ strategy :
18
+ fail-fast : false
19
+ matrix :
20
+ ruby_version :
21
+ - ' 2.5'
22
+ - ' 2.7'
23
+ - ' 3.0'
24
+ - ' 3.1'
25
+ include :
26
+ - ruby_version : ' 2.5'
27
+ puppet_gem_version : ' ~> 6.0'
28
+ - ruby_version : ' 2.7'
29
+ puppet_gem_version : ' ~> 7.0'
30
+ - ruby_version : ' 3.0'
31
+ puppet_gem_version : ' ~> 7.0'
32
+ - ruby_version : ' 3.1'
33
+ puppet_gem_version : ' ~> 7.0'
34
+ name : " spec (ruby ${{ matrix.ruby_version }} | puppet ${{ matrix.puppet_gem_version }})"
17
35
uses : " puppetlabs/cat-github-actions/.github/workflows/gem_ci.yml@main"
18
36
secrets : " inherit"
37
+ with :
38
+ ruby_version : ${{ matrix.ruby_version }}
39
+ puppet_gem_version : ${{ matrix.puppet_gem_version }}
19
40
20
41
acceptance :
21
42
needs : " spec"
43
+ strategy :
44
+ fail-fast : false
45
+ matrix :
46
+ ruby_version :
47
+ - " 2.5"
48
+ - " 2.7"
49
+ - ' 3.0'
50
+ - ' 3.1'
51
+ name : " acceptance (ruby ${{ matrix.ruby_version }})"
22
52
uses : " puppetlabs/cat-github-actions/.github/workflows/gem_acceptance.yml@main"
23
53
secrets : " inherit"
54
+ with :
55
+ ruby_version : ${{ matrix.ruby_version }}
You can’t perform that action at this time.
0 commit comments