Skip to content

Commit 2f0891a

Browse files
committed
Improve job name for clarity in workflow runs
Previously, the job name in the workflow matrix only displayed version numbers, resulting in ambiguous labels like ``` Ruby / test (3.1, 4.4, 3.0) ``` This commit updates the job name to explicitly include the technology names alongside their versions: ``` CI / Test (Ruby 3.1, MongoDB 4.4, SQLite 3.0) ``` This change makes it immediately clear which version number corresponds to which technology, improving readability and reducing confusion when reviewing workflow results.
1 parent b1981bd commit 2f0891a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ruby.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
66
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
77

8-
name: Ruby
8+
name: CI
99

1010
on:
1111
push:
@@ -23,6 +23,8 @@ jobs:
2323
mongodb-version: ['4.4']
2424
sqlite-version: ['3.0']
2525

26+
name: Test (Ruby ${{ matrix.ruby-version }}, MongoDB ${{ matrix.mongodb-version }}, SQLite ${{ matrix.sqlite-version }})
27+
2628
steps:
2729
- uses: actions/checkout@v4
2830
- name: Set up Ruby

0 commit comments

Comments
 (0)