Skip to content

Commit 20617e0

Browse files
committed
(MAINT) Ensure each job has a test matrix
1 parent 911922a commit 20617e0

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/ci.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,25 @@ 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:
1927

2028
acceptance:
2129
needs: "spec"
30+
strategy:
31+
fail-fast: false
32+
matrix:
33+
ruby_version:
34+
- "2.5"
35+
- "2.7"
36+
name: "acceptance (ruby ${{ matrix.ruby_version }})"
2237
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_acceptance.yml@main"
2338
secrets: "inherit"

0 commit comments

Comments
 (0)