Skip to content

Commit

Permalink
Merge branch 'main' into fix-first-token-whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
nwoythal committed Feb 23, 2023
2 parents ef36673 + dbc093c commit 4abf90e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,28 @@ on:
jobs:

spec:
strategy:
fail-fast: false
matrix:
ruby_version:
- '2.5'
- '2.7'
name: "spec (ruby ${{ matrix.ruby_version }})"
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_ci.yml@main"
secrets: "inherit"
with:
ruby_version: ${{ matrix.ruby_version }}

acceptance:
strategy:
fail-fast: false
matrix:
ruby_version:
- '2.5'
- '2.7'
name: "acceptance (ruby ${{ matrix.ruby_version }})"
needs: "spec"
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_acceptance.yml@main"
secrets: "inherit"
with:
ruby_version: ${{ matrix.ruby_version }}
2 changes: 1 addition & 1 deletion puppet-lint.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ Gem::Specification.new do |spec|
]
spec.license = 'MIT'

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

0 comments on commit 4abf90e

Please sign in to comment.