We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9326776 commit 50b76b3Copy full SHA for 50b76b3
.github/workflows/ci.yml
@@ -14,10 +14,28 @@ on:
14
jobs:
15
16
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 }})"
24
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_ci.yml@main"
25
secrets: "inherit"
26
+ with:
27
+ ruby_version: ${{ matrix.ruby_version }}
28
29
acceptance:
30
31
32
33
34
35
36
+ name: "acceptance (ruby ${{ matrix.ruby_version }})"
37
needs: "spec"
38
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_acceptance.yml@main"
39
40
41
0 commit comments