Skip to content

Commit 50b76b3

Browse files
committed
(CONT-339) Update CI for ruby 2.5)
1 parent 9326776 commit 50b76b3

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
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 }}

0 commit comments

Comments
 (0)