Skip to content

Commit

Permalink
Add Rails7.1 to the test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxLap committed Oct 10, 2023
1 parent 26b122c commit ce91bf8
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ jobs:
fail-fast: false
matrix:
include:
- gemfile: gemfiles/rails_7_1.gemfile
ruby_version: '3.2'
- gemfile: gemfiles/rails_7_1.gemfile
ruby_version: 2.7

- gemfile: gemfiles/rails_7_0.gemfile
ruby_version: '3.1'
- gemfile: gemfiles/rails_7_0.gemfile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run_tests_on_head.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
- gemfile: gemfiles/rails_head.gemfile
ruby_version: head
- gemfile: gemfiles/rails_head.gemfile
ruby_version: 3.1
- gemfile: gemfiles/rails_7_0.gemfile
ruby_version: 3.2
- gemfile: gemfiles/rails_7_1.gemfile
ruby_version: head
runs-on: ubuntu-latest
services:
Expand Down
11 changes: 11 additions & 0 deletions gemfiles/rails_7_1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# frozen_string_literal: true

source "https://rubygems.org"

gem "activerecord", "~> 7.1.x"
gem "sqlite3", "~> 1.4.0"
gem "pg", "~> 1.1"
gem "mysql2", "~> 0.5" if ENV["CI"] || ENV["ALL_DB"] || ENV["DB"] == "mysql"
gem "prime"

gemspec path: "../"

0 comments on commit ce91bf8

Please sign in to comment.