Skip to content

Commit

Permalink
test: Add Rails 7.1 gemfile and test against Ruby 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
julianrubisch authored Feb 21, 2024
1 parent 0730b8e commit 83bacb0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.0.2', '3.1.4', '3.2.2']
rails-version: ['6_0', '6_1', '7_0']
ruby-version: ['3.0.2', '3.1.4', '3.2.2', '3.3.0']
rails-version: ['6_0', '6_1', '7_0', '7_1']
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_${{ matrix.rails-version }}.gemfile
steps:
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7_0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source "https://rubygems.org"

gem "rails", "7.0.1"
gem "rails", "7.0.8"
gem "sqlite3", "~> 1.4"

gemspec path: "../"
8 changes: 8 additions & 0 deletions gemfiles/rails_7_1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rails", "7.1.3"
gem "sqlite3", "~> 1.4"

gemspec path: "../"

0 comments on commit 83bacb0

Please sign in to comment.