File tree Expand file tree Collapse file tree 7 files changed +472
-170
lines changed Expand file tree Collapse file tree 7 files changed +472
-170
lines changed Original file line number Diff line number Diff line change @@ -15,23 +15,27 @@ jobs:
15
15
matrix :
16
16
ruby :
17
17
- " 3.0"
18
- - 3.1
19
- - 3.2
20
- - 3.3
21
- deps :
18
+ - " 3.1"
19
+ - " 3.2"
20
+ - " 3.3"
21
+ rails :
22
22
- rails_61
23
23
- rails_70
24
24
- rails_71
25
+ - rails_72
26
+ exclude :
27
+ - ruby : " 3.0"
28
+ rails : rails_72
25
29
steps :
26
30
- uses : actions/checkout@v4
27
31
- name : Configure bundler (default)
28
32
run : |
29
33
echo "BUNDLE_GEMFILE=Gemfile" >> "$GITHUB_ENV"
30
- if : matrix.deps == 'rails_71 '
34
+ if : matrix.rails == 'rails_72 '
31
35
- name : Configure bundler (alternative)
32
36
run : |
33
- echo "BUNDLE_GEMFILE=gemfiles/${{ matrix.deps }}/Gemfile" >> "$GITHUB_ENV"
34
- if : matrix.deps != 'rails_71 '
37
+ echo "BUNDLE_GEMFILE=gemfiles/${{ matrix.rails }}/Gemfile" >> "$GITHUB_ENV"
38
+ if : matrix.rails != 'rails_72 '
35
39
- uses : ruby/setup-ruby@v1
36
40
with :
37
41
ruby-version : ${{ matrix.ruby }}
@@ -41,10 +45,10 @@ jobs:
41
45
COVERAGE : true
42
46
run : |
43
47
bundle exec rspec
44
- mv coverage/coverage.xml coverage/coverage-ruby-${{ matrix.ruby }}-${{ matrix.deps }}.xml
48
+ mv coverage/coverage.xml coverage/coverage-ruby-${{ matrix.ruby }}-${{ matrix.rails }}.xml
45
49
- uses : actions/upload-artifact@v4
46
50
with :
47
- name : coverage-ruby-${{ matrix.ruby }}-${{ matrix.deps }}
51
+ name : coverage-ruby-${{ matrix.ruby }}-${{ matrix.rails }}
48
52
path : coverage
49
53
if-no-files-found : error
50
54
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ group :rubocop do
21
21
end
22
22
23
23
group :rails do
24
- gem 'rails' , '~> 7.1.0 '
24
+ gem 'rails' , '~> 7.2.0.beta2 '
25
25
gem 'rspec-rails'
26
26
gem 'combustion'
27
27
gem 'capybara'
You can’t perform that action at this time.
0 commit comments