Skip to content

Commit 8fa7672

Browse files
committed
Make CI job names self-explanatory about adapter and versions
The MySQL and PostgreSQL jobs were named just "DB mysql" / "DB postgres", which hides the Ruby/Rails/ActiveAdmin combination they run against. The SQLite matrix jobs also didn't mention "SQLite" anywhere. Rename all three job groups so the PR checks list shows exactly what's being tested at a glance.
1 parent 3841a1a commit 8fa7672

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches: [master]
66
jobs:
77
test:
8-
name: Ruby ${{ matrix.ruby }} / Rails ${{ matrix.rails }} / AA ${{ matrix.activeadmin }}
8+
name: Ruby ${{ matrix.ruby }} / Rails ${{ matrix.rails }} / AA ${{ matrix.activeadmin }} / SQLite
99
runs-on: ubuntu-latest
1010
strategy:
1111
fail-fast: false
@@ -28,7 +28,7 @@ jobs:
2828
- name: Run tests
2929
run: bundle exec rspec spec
3030
test-mysql:
31-
name: DB mysql
31+
name: Ruby 3.4 / Rails 8.0.0 / AA 3.5.1 / MySQL 8.0
3232
runs-on: ubuntu-latest
3333
env:
3434
RAILS: '8.0.0'
@@ -60,7 +60,7 @@ jobs:
6060
- name: Run tests
6161
run: bundle exec rspec spec
6262
test-postgres:
63-
name: DB postgres
63+
name: Ruby 3.4 / Rails 8.0.0 / AA 3.5.1 / PostgreSQL 16
6464
runs-on: ubuntu-latest
6565
env:
6666
RAILS: '8.0.0'

0 commit comments

Comments
 (0)