File tree Expand file tree Collapse file tree 3 files changed +55
-1
lines changed Expand file tree Collapse file tree 3 files changed +55
-1
lines changed Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
spec :
11
+ strategy :
12
+ fail-fast : false
13
+ matrix :
14
+ ruby_version :
15
+ - ' 2.7'
16
+ - ' 3.2'
11
17
uses : " puppetlabs/cat-github-actions/.github/workflows/gem_ci.yml@main"
12
18
secrets : " inherit"
19
+ with :
20
+ ruby_version : ${{ matrix.ruby_version }}
21
+
22
+ acceptance :
23
+ needs : spec
24
+ strategy :
25
+ fail-fast : false
26
+ matrix :
27
+ ruby_version :
28
+ - ' 2.7'
29
+ - ' 3.2'
30
+ include :
31
+ - ruby_version : ' 2.7'
32
+ puppet_version : ' ~> 7.0'
33
+ - ruby_version : ' 3.2'
34
+ puppet_version : ' ~> 8.0'
35
+ uses : " puppetlabs/cat-github-actions/.github/workflows/gem_acceptance.yml@main"
36
+ secrets : " inherit"
37
+ with :
38
+ ruby_version : ${{ matrix.ruby_version }}
39
+ puppet_version : ${{ matrix.puppet_version }}
Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
spec :
10
+ strategy :
11
+ fail-fast : false
12
+ matrix :
13
+ ruby_version :
14
+ - ' 2.7'
15
+ - ' 3.2'
10
16
uses : " puppetlabs/cat-github-actions/.github/workflows/gem_ci.yml@main"
11
17
secrets : " inherit"
18
+ with :
19
+ ruby_version : ${{ matrix.ruby_version }}
20
+
21
+ acceptance :
22
+ needs : spec
23
+ strategy :
24
+ fail-fast : false
25
+ matrix :
26
+ ruby_version :
27
+ - ' 2.7'
28
+ - ' 3.2'
29
+ include :
30
+ - ruby_version : ' 2.7'
31
+ puppet_version : ' ~> 7.0'
32
+ - ruby_version : ' 3.2'
33
+ puppet_version : ' ~> 8.0'
34
+ uses : " puppetlabs/cat-github-actions/.github/workflows/gem_acceptance.yml@main"
35
+ secrets : " inherit"
36
+ with :
37
+ ruby_version : ${{ matrix.ruby_version }}
38
+ puppet_version : ${{ matrix.puppet_version }}
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
30
30
31
31
spec . add_runtime_dependency 'mocha' , '~> 1.0'
32
32
spec . add_runtime_dependency 'pathspec' , '>= 0.2' , '< 2.0.0'
33
- spec . add_runtime_dependency 'puppet-lint' , '>= 3.0 .0'
33
+ spec . add_runtime_dependency 'puppet-lint' , '~> 4 .0'
34
34
spec . add_runtime_dependency 'puppet-syntax' , '~> 3.0'
35
35
spec . add_runtime_dependency 'rspec-github' , '~> 2.0'
36
36
spec . add_runtime_dependency 'rspec-puppet' , '>= 2.0'
You can’t perform that action at this time.
0 commit comments