Test on Ruby 3.1 & Rails 7.0x

This commit is contained in:
Ryan Bigg 2022-01-04 09:20:03 +11:00
parent dbee3d8e08
commit f197d2a2e3
2 changed files with 15 additions and 1 deletions

View File

@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby_version: ["3.0", 2.7, 2.6, 2.5, 2.4, 2.3, jruby]
ruby_version: [3.1, "3.0", 2.7, 2.6, 2.5, 2.4, 2.3, jruby]
gemfile:
[
Gemfile,
@ -26,6 +26,7 @@ jobs:
gemfiles/Gemfile.rails-5.2.x,
gemfiles/Gemfile.rails-6.0.x,
gemfiles/Gemfile.rails-6.1.x,
gemfiles/Gemfile.rails-7.0.x,
gemfiles/Gemfile.rails-main,
]
exclude:

View File

@ -0,0 +1,13 @@
source 'https://rubygems.org'
gemspec :path => '..'
gem 'activesupport', '~> 7.0'
gem 'mocha', '~> 1.7.0'
gem 'test_declarative', '0.0.6'
gem 'rake'
gem 'minitest', '~> 5.14'
platforms :mri do
gem 'oj'
end