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:
2929 cancel-in-progress : true
3030
3131jobs :
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') }}
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ concurrency:
2323
2424jobs :
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') }}
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"
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 }}
You can’t perform that action at this time.
0 commit comments