File tree Expand file tree Collapse file tree 2 files changed +6
-9
lines changed Expand file tree Collapse file tree 2 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ concurrency:
3030
3131jobs :
3232 test :
33- name : Specs with Coverage ${{ matrix.ruby }} ${{ matrix.name_extra || '' }}
33+ name : Specs with Coverage ${{ matrix.ruby }}
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') }}
4141 matrix :
4242 include :
4343 # Coverage
44- - ruby : " ruby-3.4 "
44+ - ruby : " ruby"
4545 appraisal : " coverage"
4646 exec_cmd : " rake spec"
4747 gemfile : " Appraisal.root"
@@ -74,11 +74,11 @@ jobs:
7474 # Raw `bundle` will use the BUNDLE_GEMFILE set to matrix.gemfile (i.e. Appraisal.root)
7575 # We need to do this first to get appraisal installed.
7676 # NOTE: This does not use the main Gemfile at all.
77- - name : Bundle install for Appraisal ${{ matrix.appraisal }}
77+ - name : Install Root Appraisal
7878 run : bundle
79- - name : Install Appraisal ${{ matrix.appraisal }} dependencies
79+ - name : Appraisal for ${{ matrix.appraisal }}
8080 run : bundle exec appraisal ${{ matrix.appraisal }} bundle
81- - name : Run ${{ matrix.appraisal }} tests via ${{ matrix.exec_cmd }}
81+ - name : Tests for ${{ matrix.ruby }}@current via ${{ matrix.exec_cmd }}
8282 run : bundle exec appraisal ${{ matrix.appraisal }} bundle exec ${{ matrix.exec_cmd }}
8383
8484 - name : CodeClimate Post-build Notification
Original file line number Diff line number Diff line change 4343 gemfile : " Appraisal.root"
4444 rubygems : latest
4545 bundler : latest
46- name_extra : " ruby-3.4" # NOTE: This will become out of date!
4746
4847 # truffleruby-24.1 (targets Ruby 3.3.5 compatibility)
4948 - ruby : " truffleruby"
5251 gemfile : " Appraisal.root"
5352 rubygems : default
5453 bundler : default
55- name_extra : " truffleruby-24.1" # NOTE: This will become out of date!
5654
5755 # jruby-9.4 (targets Ruby 3.1 compatibility)
5856 - ruby : " jruby"
6159 gemfile : " Appraisal.root"
6260 rubygems : default
6361 bundler : default
64- name_extra : " jruby-9.4" # NOTE: This will become out of date!
6562
6663 steps :
6764 - name : Checkout
8279 run : bundle
8380 - name : Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}
8481 run : bundle exec appraisal ${{ matrix.appraisal }} bundle
85- - name : Tests for ${{ matrix.ruby }}@${{ matrix.appraisal }} (${{ matrix.name_extra }}?) via ${{ matrix.exec_cmd }}
82+ - name : Tests for ${{ matrix.ruby }}@${{ matrix.appraisal }} via ${{ matrix.exec_cmd }}
8683 run : bundle exec appraisal ${{ matrix.appraisal }} bundle exec ${{ matrix.exec_cmd }}
You can’t perform that action at this time.
0 commit comments