Skip to content

Commit

Permalink
Add Rails 7.1 to the test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
jdelStrother committed Jun 16, 2024
1 parent 02dd86f commit b541835
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
ruby: [ '2.7', '3.0', '3.1', '3.2' ]
rails: [ '5_0', '5_1', '5_2', '6_0', '6_1', '7_0' ]
rails: [ '5_0', '5_1', '5_2', '6_0', '6_1', '7_0', '7_1' ]
database: [ 'mysql2', 'postgresql' ]
sphinx_version: [ '2.2.11', '3.4.1' ]
sphinx_engine: [ 'sphinx' ]
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
fail-fast: false
matrix:
ruby: [ '2.7', '3.0', '3.1', '3.2' ]
rails: [ '5_0', '5_1', '5_2', '6_0', '6_1', '7_0' ]
rails: [ '5_0', '5_1', '5_2', '6_0', '6_1', '7_0', '7_1' ]
database: [ 'mysql2', 'postgresql' ]
sphinx_version: [ '4.0.2', '6.0.0' ]
sphinx_engine: [ 'manticore' ]
Expand Down
6 changes: 6 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,9 @@ appraise 'rails_7_0' do
gem 'mysql2', '~> 0.5.0', :platform => :ruby
gem 'pg', '~> 1.0', :platform => :ruby
end if RUBY_PLATFORM != 'java' && RUBY_VERSION.to_f >= 2.7

appraise 'rails_7_1' do
gem 'rails', '~> 7.1.0'
gem 'mysql2', '~> 0.5.0', :platform => :ruby
gem 'pg', '~> 1.0', :platform => :ruby
end if RUBY_PLATFORM != 'java' && RUBY_VERSION.to_f >= 2.7

0 comments on commit b541835

Please sign in to comment.