Skip to content

Commit

Permalink
Adding Ruby 3.3 and Rails 7.2 to CI matrix (#967)
Browse files Browse the repository at this point in the history
  • Loading branch information
jotolo authored Sep 30, 2024
1 parent 5193d28 commit 17597e6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: [ '3.0', '3.1', '3.2' ]
gemfile: [rails.6.1.activerecord, rails.7.0.activerecord, rails.7.1.activerecord]
ruby: [ '3.0', '3.1', '3.2', '3.3' ]
gemfile: [rails.6.1.activerecord, rails.7.0.activerecord, rails.7.1.activerecord, rails.7.2.activerecord]
exclude:
- ruby: '3.0'
gemfile: rails.7.2.activerecord
name: ${{ matrix.ruby }}-${{ matrix.gemfile }}

env:
Expand Down
14 changes: 14 additions & 0 deletions gemfiles/rails.7.2.activerecord.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
source 'https://rubygems.org'

gem 'activejob', '~> 7.2.0'
gem 'activerecord', '~> 7.2.0'
gem 'activesupport', '~> 7.2.0'
gem 'kaminari-core', '~> 1.1.0', require: false
gem 'parallel', require: false
gem 'rspec_junit_formatter', '~> 0.4.1'
gem 'sidekiq', require: false

gem 'rexml'

gemspec path: '../'
eval_gemfile 'base.gemfile'

0 comments on commit 17597e6

Please sign in to comment.