Skip to content

Commit c9f94d8

Browse files
Use stable job names
1 parent b631339 commit c9f94d8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ubuntu.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,15 @@ on:
99

1010
jobs:
1111
test:
12+
name: Ruby ${{ matrix.ruby.name }}
1213
runs-on: ubuntu-24.04
1314

1415
strategy:
1516
matrix:
16-
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 }
1721

1822
env:
1923
BUNDLE_PATH: .bundle
@@ -24,7 +28,7 @@ jobs:
2428
- name: Setup ruby
2529
uses: ruby/setup-ruby@v1
2630
with:
27-
ruby-version: ${{ matrix.ruby }}
31+
ruby-version: ${{ matrix.ruby.value }}
2832

2933
- name: Install dependencies
3034
run: |

0 commit comments

Comments
 (0)