We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a2b89d commit c45e031Copy full SHA for c45e031
.github/workflows/ci.yml
@@ -19,6 +19,10 @@ jobs:
19
build:
20
runs-on: ubuntu-latest
21
22
+ strategy:
23
+ matrix:
24
+ ruby: ["3.0", "3.1", "3.2"]
25
+
26
steps:
27
- name: Checkout
28
uses: actions/checkout@v4
@@ -28,7 +32,7 @@ jobs:
32
- name: Setup Ruby
29
33
uses: ruby/setup-ruby@v1
30
34
with:
31
- ruby-version: 3
35
+ ruby-version: ${{ matrix.ruby }}
36
bundler-cache: true
37
38
- name: Setup Node
.github/workflows/pages-deploy.yml.hook
@@ -42,7 +42,7 @@ jobs:
42
43
44
45
+ ruby-version: 3.2
46
47
48
- name: Build site
0 commit comments