Skip to content

Commit 4abf90e

Browse files
authored
Merge branch 'main' into fix-first-token-whitespace
2 parents ef36673 + dbc093c commit 4abf90e

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.github/workflows/ci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,28 @@ on:
1414
jobs:
1515

1616
spec:
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
ruby_version:
21+
- '2.5'
22+
- '2.7'
23+
name: "spec (ruby ${{ matrix.ruby_version }})"
1724
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_ci.yml@main"
1825
secrets: "inherit"
26+
with:
27+
ruby_version: ${{ matrix.ruby_version }}
1928

2029
acceptance:
30+
strategy:
31+
fail-fast: false
32+
matrix:
33+
ruby_version:
34+
- '2.5'
35+
- '2.7'
36+
name: "acceptance (ruby ${{ matrix.ruby_version }})"
2137
needs: "spec"
2238
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_acceptance.yml@main"
2339
secrets: "inherit"
40+
with:
41+
ruby_version: ${{ matrix.ruby_version }}

puppet-lint.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ Gem::Specification.new do |spec|
3232
]
3333
spec.license = 'MIT'
3434

35-
spec.required_ruby_version = Gem::Requirement.new('>= 2.7'.freeze)
35+
spec.required_ruby_version = Gem::Requirement.new('>= 2.5'.freeze)
3636
end

0 commit comments

Comments
 (0)