File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ concurrency:
29
29
cancel-in-progress : true
30
30
31
31
jobs :
32
- test :
33
- name : Specs with Coverage ${{ matrix.ruby }}
32
+ coverage :
33
+ name : Code Coverage on ${{ matrix.ruby }}@current
34
34
if : " !contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]')"
35
35
runs-on : ubuntu-latest
36
36
continue-on-error : ${{ matrix.experimental || endsWith(matrix.ruby, 'head') }}
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ concurrency:
23
23
24
24
jobs :
25
25
rubocop :
26
- name : RuboCop Gradual
26
+ name : Style on ${{ matrix.ruby }}@current
27
27
if : " !contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]')"
28
28
runs-on : ubuntu-latest
29
29
continue-on-error : ${{ matrix.experimental || endsWith(matrix.ruby, 'head') }}
34
34
matrix :
35
35
include :
36
36
# Style
37
- - ruby : " ruby-3.4 "
37
+ - ruby : " ruby"
38
38
appraisal : " style"
39
39
exec_cmd : " rake rubocop_gradual:check"
40
40
gemfile : " Appraisal.root"
56
56
# Raw `bundle` will use the BUNDLE_GEMFILE set to matrix.gemfile (i.e. Appraisal.root)
57
57
# We need to do this first to get appraisal installed.
58
58
# NOTE: This does not use the main Gemfile at all.
59
- - name : Bundle install for Appraisal ${{ matrix.appraisal }}
59
+ - name : Install Root Appraisal
60
60
run : bundle
61
- - name : Install Appraisal ${{ matrix.appraisal }} dependencies
61
+ - name : Appraisal for ${{ matrix.appraisal }}
62
62
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 }}
64
64
run : bundle exec appraisal ${{ matrix.appraisal }} bundle exec ${{ matrix.exec_cmd }}
You can’t perform that action at this time.
0 commit comments