Skip to content

Commit

Permalink
Test against Rails 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
andyundso committed Jan 2, 2024
1 parent 57e372c commit a2d605f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ jobs:
fail-fast: false
matrix:
ruby: [ '2.6', '2.7', '3.0', '3.1', '3.2', '3.3' ]
rails: [ '5-2', '6-0', '6-1', '7-0' ]
rails: [ '5-2', '6-0', '6-1', '7-0', '7-1' ]
# excludes are sorted by Ruby version, then Rails version
exclude:
- ruby: 2.6 # Rails 7 requires 2.7 minimum
rails: 7-0
- ruby: 2.6 # Rails 7.1 requires 2.7 minimum
rails: 7-1
- ruby: 3.0 # Ruby 3 support for 5.2 hasn't been added
rails: 5-2
- ruby: 3.1 # Ruby 3.1 only works on the latest Rails 7 version
Expand Down
12 changes: 12 additions & 0 deletions gemfiles/rails_7_1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This file was generated by Appraisal

source "http://rubygems.org"

gem "simplecov", group: :test, require: nil
gem "activesupport", "~> 7.1"

group :development, :test do
gem "actionpack", "~> 7.1"
end

gemspec path: "../"

0 comments on commit a2d605f

Please sign in to comment.