Skip to content

Commit

Permalink
Add rails 7.1 to test target
Browse files Browse the repository at this point in the history
  • Loading branch information
alpaca-tc committed Oct 5, 2023
1 parent a06bb6d commit c69c7a4
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
gemfile: ['6.0_stable', '6.1_stable', '7.0_stable']
gemfile: ['6.0_stable', '6.1_stable', '7.0_stable', '7.1_stable']
ruby-version: ['2.5', '2.6', '2.7', '3.0', '3.1', '3.2']
exclude:
- ruby-version: '3.2'
Expand All @@ -41,6 +41,10 @@ jobs:
gemfile: '7.0_stable'
- ruby-version: '2.6'
gemfile: '7.0_stable'
- ruby-version: '2.5'
gemfile: '7.1_stable'
- ruby-version: '2.6'
gemfile: '7.1_stable'
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
steps:
Expand Down
4 changes: 4 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ end
appraise '7.0-stable' do
gem 'activerecord', '~> 7.0.0'
end

appraise '7.1-stable' do
gem 'activerecord', '~> 7.1.0'
end
13 changes: 13 additions & 0 deletions gemfiles/7.1_stable.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "pry"
gem "rubocop", "1.28.2"
gem "appraisal"
gem "rake"
gem "rspec"
gem "sqlite3"
gem "activerecord", "~> 7.1.0"

gemspec path: "../"

0 comments on commit c69c7a4

Please sign in to comment.