Skip to content

Commit

Permalink
Add Rails 7.2 to test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
tomgi committed Oct 28, 2024
1 parent 51403c0 commit 22ab09c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
ruby_version: ['2.7', '3.0', '3.1', '3.2']
rails_gemfile: ['6.0', '6.1', '7.0', '7.1']
rails_gemfile: ['6.0', '6.1', '7.0', '7.1', '7.2']
postgres_version: ['14']
include:
# Postgres versions
Expand Down
23 changes: 23 additions & 0 deletions spec/gemfiles/Gemfile-rails-7.2
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
source 'https://rubygems.org'

gem 'que', path: '../..'

group :development, :test do
gem 'rake'

gem 'activerecord', '~> 7.2.0', require: nil
gem 'activejob', '~> 7.2.0', require: nil
gem 'sequel', require: nil
gem 'connection_pool', require: nil
gem 'pond', require: nil
gem 'pg', require: nil, platform: :ruby
gem 'pg_jruby', require: nil, platform: :jruby
end

group :test do
gem 'minitest', '~> 5.10.1'
gem 'minitest-profile', '0.0.2'
gem 'minitest-hooks', '1.4.0'
gem 'pry'
gem 'pg_examiner', '~> 0.5.2'
end

0 comments on commit 22ab09c

Please sign in to comment.