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 b631339 commit c9f94d8Copy full SHA for c9f94d8
.github/workflows/ubuntu.yml
@@ -9,11 +9,15 @@ on:
9
10
jobs:
11
test:
12
+ name: Ruby ${{ matrix.ruby.name }}
13
runs-on: ubuntu-24.04
14
15
strategy:
16
matrix:
- ruby: [3.1.7, 3.2.8, 3.3.7]
17
+ ruby:
18
+ - { name: 3.1, value: 3.1.7 }
19
+ - { name: 3.2, value: 3.2.8 }
20
+ - { name: 3.3, value: 3.3.7 }
21
22
env:
23
BUNDLE_PATH: .bundle
@@ -24,7 +28,7 @@ jobs:
24
28
- name: Setup ruby
25
29
uses: ruby/setup-ruby@v1
26
30
with:
27
- ruby-version: ${{ matrix.ruby }}
31
+ ruby-version: ${{ matrix.ruby.value }}
32
33
- name: Install dependencies
34
run: |
0 commit comments