Skip to content

Commit

Permalink
CI: name individual run steps (#939)
Browse files Browse the repository at this point in the history
...to make them distinct from one another.

The name is otherwise built from the "run" value.
  • Loading branch information
olleolleolle authored Oct 6, 2023
1 parent 54b1b09 commit 9cbd4f4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,20 +49,26 @@ jobs:
with:
ruby-version: 2.7
- run: bundle install && bundle exec rake test:rails
name: "rake test:rails RAILS=5.2.8"
env:
RAILS: 5.2.8
- run: bundle install && bundle exec rake test:rails
name: "rake test:rails RAILS=6.0.6"
env:
RAILS: 6.0.6
- run: bundle install && bundle exec rake test:rails
name: "rake test:rails RAILS=6.1.7"
env:
RAILS: 6.1.7
- run: bundle install && bundle exec rake test:rails
name: "rake test:rails RAILS=7.0.7"
env:
RAILS: 7.0.7
- run: bundle install && bundle exec rake test:rails
name: "rake test:rails RAILS=7.1.0"
env:
RAILS: 7.1.0
- run: bundle install && bundle exec rake test:rails
name: "rake test:rails RAILS=main"
env:
RAILS: main

0 comments on commit 9cbd4f4

Please sign in to comment.