Skip to content

Commit

Permalink
(CONT-339) Update CI for ruby 2.5)
Browse files Browse the repository at this point in the history
  • Loading branch information
chelnak committed Feb 21, 2023
1 parent 5ccece5 commit 95bc4ff
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,29 @@ 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 }}

0 comments on commit 95bc4ff

Please sign in to comment.