We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b28e8df commit 79a9a62Copy full SHA for 79a9a62
1 file changed
.github/workflows/checks.yml
@@ -15,15 +15,18 @@ on:
15
jobs:
16
ci:
17
runs-on: ubuntu-latest
18
+ strategy:
19
+ matrix:
20
+ ruby-version: ["2.6", "3.3"]
21
22
steps:
23
- name: Check out
24
uses: actions/checkout@v4
25
- - name: Set up Ruby
26
+ - name: Set up Ruby ${{ matrix.ruby-version }}
27
uses: ruby/setup-ruby@v1
28
with:
- ruby-version: "2.6"
29
+ ruby-version: ${{ matrix.ruby-version }}
30
bundler-cache: true
31
32
- name: Install
0 commit comments