File tree Expand file tree Collapse file tree 5 files changed +18
-8
lines changed Expand file tree Collapse file tree 5 files changed +18
-8
lines changed Original file line number Diff line number Diff line change 14
14
jobs :
15
15
test :
16
16
runs-on : ubuntu-latest
17
+ strategy :
18
+ matrix :
19
+ ruby : ["3.2", "3.3", "3.4"]
17
20
steps :
18
21
- uses : actions/checkout@v4
19
22
- uses : ruby/setup-ruby@v1
20
23
with :
21
- ruby-version : " 3.2 " # Not needed with a .ruby-version file
24
+ ruby-version : ${{ matrix .ruby }}
22
25
- uses : actions/cache@v3
23
26
with :
24
27
path : vendor/bundle
40
43
- uses : actions/checkout@v4
41
44
- uses : ruby/setup-ruby@v1
42
45
with :
43
- ruby-version : " 3.2 " # Not needed with a .ruby-version file
46
+ ruby-version : " 3.4 " # Not needed with a .ruby-version file
44
47
- uses : actions/cache@v3
45
48
with :
46
49
path : vendor/bundle
Original file line number Diff line number Diff line change 1
- 3.2 .2
1
+ 3.4 .2
Original file line number Diff line number Diff line change 4
4
5
5
source 'https://rubygems.org'
6
6
7
- gem 'rails', github: 'rails/rails '
7
+ gem 'rails', '~> 8.0.2 '
8
8
9
9
gemspec path: '../'
Original file line number Diff line number Diff line change
1
+ # frozen_string_literal: true
2
+
3
+ # This file was generated by Appraisal
4
+
5
+ source 'https://rubygems.org'
6
+
7
+ gem 'rails', github: 'rails/rails'
8
+
9
+ gemspec path: '../'
Original file line number Diff line number Diff line change 13
13
ActiveSupport ::Dependencies . autoload_once_paths = [ ]
14
14
ActiveSupport ::Dependencies . autoload_paths = [ ]
15
15
Class . new ( Rails ::Application ) do
16
- config . active_support . deprecation = :stderr
16
+ config . load_defaults Rails . gem_version . version . to_f
17
17
config . eager_load = false
18
- config . cache_store = :null_store
19
- config . action_dispatch . return_only_media_type_on_content_type = false
20
- config . secret_key_base = SecureRandom . hex
18
+ config . active_support . deprecation = :stderr
21
19
config . middleware . use Rack ::Attack if ENV [ 'RACK_ATTACK' ]
22
20
end
23
21
end
You can’t perform that action at this time.
0 commit comments