mirror of
https://github.com/samsonjs/rack-attack.git
synced 2026-03-25 09:25:49 +00:00
Add Rails 8 to CI (#677)
This commit is contained in:
parent
0d40ea6538
commit
0b48f9f92c
4 changed files with 72 additions and 0 deletions
33
.github/workflows/build.yml
vendored
33
.github/workflows/build.yml
vendored
|
|
@ -28,6 +28,7 @@ jobs:
|
|||
gemfile:
|
||||
- rack_3
|
||||
- rack_2
|
||||
- rails_8_0
|
||||
- rails_7_2
|
||||
- rails_7_1
|
||||
- rails_7_0
|
||||
|
|
@ -39,6 +40,8 @@ jobs:
|
|||
- redis_5
|
||||
- redis_4
|
||||
- connection_pool_dalli
|
||||
- active_support_8_0_redis_cache_store
|
||||
- active_support_8_0_redis_cache_store_pooled
|
||||
- active_support_7_2_redis_cache_store
|
||||
- active_support_7_2_redis_cache_store_pooled
|
||||
- active_support_7_1_redis_cache_store
|
||||
|
|
@ -131,6 +134,36 @@ jobs:
|
|||
ruby: '2.6'
|
||||
- gemfile: active_support_7_2_redis_cache_store_pooled
|
||||
ruby: '2.5'
|
||||
- gemfile: rails_8_0
|
||||
ruby: '3.1'
|
||||
- gemfile: rails_8_0
|
||||
ruby: '3.0'
|
||||
- gemfile: rails_8_0
|
||||
ruby: '2.7'
|
||||
- gemfile: rails_8_0
|
||||
ruby: '2.6'
|
||||
- gemfile: rails_8_0
|
||||
ruby: '2.5'
|
||||
- gemfile: active_support_8_0_redis_cache_store
|
||||
ruby: '3.1'
|
||||
- gemfile: active_support_8_0_redis_cache_store
|
||||
ruby: '3.0'
|
||||
- gemfile: active_support_8_0_redis_cache_store
|
||||
ruby: '2.7'
|
||||
- gemfile: active_support_8_0_redis_cache_store
|
||||
ruby: '2.6'
|
||||
- gemfile: active_support_8_0_redis_cache_store
|
||||
ruby: '2.5'
|
||||
- gemfile: active_support_8_0_redis_cache_store_pooled
|
||||
ruby: '3.1'
|
||||
- gemfile: active_support_8_0_redis_cache_store_pooled
|
||||
ruby: '3.0'
|
||||
- gemfile: active_support_8_0_redis_cache_store_pooled
|
||||
ruby: '2.7'
|
||||
- gemfile: active_support_8_0_redis_cache_store_pooled
|
||||
ruby: '2.6'
|
||||
- gemfile: active_support_8_0_redis_cache_store_pooled
|
||||
ruby: '2.5'
|
||||
env:
|
||||
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
|
||||
steps:
|
||||
|
|
|
|||
13
gemfiles/active_support_8_0_redis_cache_store.gemfile
Normal file
13
gemfiles/active_support_8_0_redis_cache_store.gemfile
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# This file was generated by Appraisal
|
||||
|
||||
source "https://rubygems.org"
|
||||
|
||||
gem "activesupport", "~> 8.0.0"
|
||||
gem "redis", "~> 5.0"
|
||||
|
||||
group :maintenance, optional: true do
|
||||
gem "bake"
|
||||
gem "bake-gem"
|
||||
end
|
||||
|
||||
gemspec path: "../"
|
||||
14
gemfiles/active_support_8_0_redis_cache_store_pooled.gemfile
Normal file
14
gemfiles/active_support_8_0_redis_cache_store_pooled.gemfile
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# This file was generated by Appraisal
|
||||
|
||||
source "https://rubygems.org"
|
||||
|
||||
gem "activesupport", "~> 8.0.0"
|
||||
gem "connection_pool", "~> 2.2"
|
||||
gem "redis", "~> 5.0"
|
||||
|
||||
group :maintenance, optional: true do
|
||||
gem "bake"
|
||||
gem "bake-gem"
|
||||
end
|
||||
|
||||
gemspec path: "../"
|
||||
12
gemfiles/rails_8_0.gemfile
Normal file
12
gemfiles/rails_8_0.gemfile
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
# This file was generated by Appraisal
|
||||
|
||||
source "https://rubygems.org"
|
||||
|
||||
gem "railties", "~> 8.0.0"
|
||||
|
||||
group :maintenance, optional: true do
|
||||
gem "bake"
|
||||
gem "bake-gem"
|
||||
end
|
||||
|
||||
gemspec path: "../"
|
||||
Loading…
Reference in a new issue