Skip to content

Commit c44f8e9

Browse files
committed
👷 Normalize coverage and style workflows
1 parent 8f98c83 commit c44f8e9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ concurrency:
2929
cancel-in-progress: true
3030

3131
jobs:
32-
test:
33-
name: Specs with Coverage ${{ matrix.ruby }}
32+
coverage:
33+
name: Code Coverage on ${{ matrix.ruby }}@current
3434
if: "!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]')"
3535
runs-on: ubuntu-latest
3636
continue-on-error: ${{ matrix.experimental || endsWith(matrix.ruby, 'head') }}

.github/workflows/style.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ concurrency:
2323

2424
jobs:
2525
rubocop:
26-
name: RuboCop Gradual
26+
name: Style on ${{ matrix.ruby }}@current
2727
if: "!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]')"
2828
runs-on: ubuntu-latest
2929
continue-on-error: ${{ matrix.experimental || endsWith(matrix.ruby, 'head') }}
@@ -34,7 +34,7 @@ jobs:
3434
matrix:
3535
include:
3636
# Style
37-
- ruby: "ruby-3.4"
37+
- ruby: "ruby"
3838
appraisal: "style"
3939
exec_cmd: "rake rubocop_gradual:check"
4040
gemfile: "Appraisal.root"
@@ -56,9 +56,9 @@ jobs:
5656
# Raw `bundle` will use the BUNDLE_GEMFILE set to matrix.gemfile (i.e. Appraisal.root)
5757
# We need to do this first to get appraisal installed.
5858
# NOTE: This does not use the main Gemfile at all.
59-
- name: Bundle install for Appraisal ${{ matrix.appraisal }}
59+
- name: Install Root Appraisal
6060
run: bundle
61-
- name: Install Appraisal ${{ matrix.appraisal }} dependencies
61+
- name: Appraisal for ${{ matrix.appraisal }}
6262
run: bundle exec appraisal ${{ matrix.appraisal }} bundle
63-
- name: Run ${{ matrix.appraisal }} tests via ${{ matrix.exec_cmd }}
63+
- name: Run ${{ matrix.appraisal }} checks via ${{ matrix.exec_cmd }}
6464
run: bundle exec appraisal ${{ matrix.appraisal }} bundle exec ${{ matrix.exec_cmd }}

0 commit comments

Comments
 (0)