Skip to content

Commit

Permalink
DEV: Add compatibility with Rails 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Flink committed May 30, 2024
1 parent 3c3ee42 commit d891835
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,13 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["3.1", "3.2", "3.3"]
rails: ["6.1", "7.0", "7.1", "edge"]
ok_to_fail: [""]
ruby: ["3.1", "3.2", "3.3", "3.4"]
rails: ["6.1", "7.0", "7.1", "7.2", "edge"]
exclude:
- ruby: "3.4"
rails: "6.1"
- ruby: "3.4"
rails: "7.0"
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
Expand Down
12 changes: 12 additions & 0 deletions gemfiles/rails_7.2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# frozen_string_literal: true
source 'https://rubygems.org'

group :test do
gem 'activerecord', '~> 7.2.0.beta'
gem 'railties', '~> 7.2.0.beta'
gem 'rspec'
gem 'sqlite3', '~> 1.4'
gem 'byebug'
gem 'rubocop'
gem 'rubocop-discourse'
end

0 comments on commit d891835

Please sign in to comment.