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