Skip to content

Commit

Permalink
* Update CI to run against rails 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PikachuEXE committed Oct 6, 2023
1 parent 1ecd7c3 commit 635cb11
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
- gemfiles/rails_6_0.gemfile
- gemfiles/rails_6_1.gemfile
- gemfiles/rails_7_0.gemfile
- gemfiles/rails_7_1.gemfile
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
COVERALLS: true
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,13 @@ jobs:
- gemfiles/rails_6_0.gemfile
- gemfiles/rails_6_1.gemfile
- gemfiles/rails_7_0.gemfile
- gemfiles/rails_7_1.gemfile
allow_failures:
- false
include:
- os: ubuntu
ruby: ruby-head
gemfile: gemfiles/rails_7_0.gemfile
gemfile: gemfiles/rails_7_1.gemfile
allow_failures: true
env:
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
Expand Down
5 changes: 5 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,8 @@ appraise "rails_7_0" do
version = "~> 7.0.0"
gem "activerecord", version
end

appraise "rails_7_1" do
version = "~> 7.1.0"
gem "activerecord", version
end
7 changes: 7 additions & 0 deletions gemfiles/rails_7_1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activerecord", "~> 7.1.0"

gemspec path: "../"

0 comments on commit 635cb11

Please sign in to comment.