Skip to content

Commit

Permalink
Test against Rails 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ledermann committed Sep 23, 2023
1 parent b34dd5b commit 83017c0
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
ruby: [ '3.0', '3.1', '3.2' ]
rails: [ '6.1', '7.0' ]
rails: [ '6.1', '7.0', '7.1' ]

name: SQLite / Ruby ${{ matrix.ruby }} / Rails ${{ matrix.rails }}

Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
fail-fast: false
matrix:
ruby: [ '3.0', '3.1', '3.2' ]
rails: [ '6.1', '7.0' ]
rails: [ '6.1', '7.0', '7.1' ]

name: MySQL / Ruby ${{ matrix.ruby }} / Rails ${{ matrix.rails }}

Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
fail-fast: false
matrix:
ruby: [ '3.0', '3.1', '3.2' ]
rails: [ '6.1', '7.0' ]
rails: [ '6.1', '7.0', '7.1' ]

name: PostgreSQL / Ruby ${{ matrix.ruby }} / Rails ${{ matrix.rails }}

Expand Down
7 changes: 7 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
appraise "rails-7.1" do
gem "activerecord", "~> 7.1.0.beta1"
gem "mysql2", "~> 0.5"
gem "pg", "~> 1.3"
gem "sqlite3", "~> 1.4"
end

appraise "rails-7.0" do
gem "activerecord", "~> 7.0.0"
gem "mysql2", "~> 0.5"
Expand Down
10 changes: 10 additions & 0 deletions gemfiles/rails_7.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activerecord", "~> 7.1.0.beta1"
gem "mysql2", "~> 0.5"
gem "pg", "~> 1.3"
gem "sqlite3", "~> 1.4"

gemspec path: "../"

0 comments on commit 83017c0

Please sign in to comment.