File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 94
94
# Build will fail here if coverage upload fails
95
95
# which will hopefully be noticed for the lack of code coverage comments
96
96
- name : Upload coverage to CodeCov
97
+ if : ${{ !env.ACT }}
97
98
uses : codecov/codecov-action@v5
98
99
with :
99
100
use_oidc : true
Original file line number Diff line number Diff line change @@ -37,23 +37,23 @@ jobs:
37
37
strategy :
38
38
matrix :
39
39
include :
40
- # Ruby 3.4
41
- - ruby : " 3.4 "
40
+ # Ruby <whichever version is current, e.g., 3.4 as of 2025-07-12>
41
+ - ruby : " ruby "
42
42
appraisal_name : " r3"
43
43
exec_cmd : " rake test"
44
44
gemfile : " Appraisal.root"
45
45
rubygems : latest
46
46
bundler : latest
47
47
48
- # truffleruby- 24.1
48
+ # truffleruby <whichever version is current, e.g., 24.1 as of 2025-07-12>
49
49
- ruby : " truffleruby"
50
50
appraisal_name : " r3"
51
51
exec_cmd : " rake test"
52
52
gemfile : " Appraisal.root"
53
53
rubygems : default
54
54
bundler : default
55
55
56
- # jruby- 10.0 (targets Ruby 3.4 compatibility)
56
+ # jruby <whichever version is current, e.g., 10.0 (targets Ruby 3.4 compatibility) as of 2025-07-12>
57
57
- ruby : " jruby"
58
58
appraisal_name : " r3"
59
59
exec_cmd : " rake test"
75
75
bundler : ${{ matrix.bundler }}
76
76
bundler-cache : false
77
77
78
- # Raw `bundle` will use the BUNDLE_GEMFILE set to matrix.gemfile (i.e. Appraisal.root)
78
+ # Raw `bundle` will use the BUNDLE_GEMFILE set to matrix.gemfile (i.e., Appraisal.root)
79
79
# We need to do this first to get appraisal installed.
80
80
# NOTE: This does not use the main Gemfile at all.
81
81
- name : Install Root Appraisal
You can’t perform that action at this time.
0 commit comments