Skip to content

Commit

Permalink
CI against Rails 7.1 (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
y-yagi authored Dec 1, 2023
1 parent 6647ec9 commit 327dbe5
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,15 @@ jobs:
- ruby: '3.1'
activerecord: '7.0'
gemfile: 'activerecord_7_0.gemfile'
- ruby: '3.0'
activerecord: '7.1'
gemfile: 'activerecord_7_1.gemfile'
- ruby: '3.1'
activerecord: '7.1'
gemfile: 'activerecord_7_1.gemfile'
- ruby: '3.2'
activerecord: '7.1'
gemfile: 'activerecord_7_1.gemfile'
- ruby: '3.2'
activerecord: 'HEAD'
gemfile: 'activerecord_master.gemfile'
Expand Down
6 changes: 6 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ appraise "activerecord-7-0" do
gem "rspec-rails", "~> 5.0"
end

appraise "activerecord-7-1" do
gem "activerecord", "~> 7.1.0"
gem "sqlite3", "~> 1.4"
gem "rspec-rails", "~> 5.0"
end

appraise "activerecord-master" do
git "https://github.com/rails/rails.git" do
gem "rails"
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
after_commit_everywhere (1.3.0)
after_commit_everywhere (1.3.1)
activerecord (>= 4.2)
activesupport

Expand Down
9 changes: 9 additions & 0 deletions gemfiles/activerecord_7_1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activerecord", "~> 7.1.0"
gem "sqlite3", "~> 1.4"
gem "rspec-rails", "~> 5.0"

gemspec path: "../"

0 comments on commit 327dbe5

Please sign in to comment.