Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
santib committed Dec 29, 2024
1 parent ff00238 commit 352abcf
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
gemfile: [rails_7_1.gemfile, rails_head.gemfile]
ruby_version: ['2.7', '3.0', '3.1', '3.2']
exclude:
- gemfile: rails_head.gemfile
ruby_version: '2.7'
- gemfile: rails_head.gemfile
ruby_version: '3.0'
gemfile: [rails_7_1.gemfile, rails_7_2.gemfile, rails_8_0.gemfile, rails_head.gemfile]
ruby_version: ['2.7', '3.0', '3.1', '3.2', '3.3', '3.4']
env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}
CC_TEST_REPORTER_ID: 7196b4aa257fde33f24463218af32db6a6efd23d9148204822f757fa614a093e
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7_1.gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://rubygems.org'

gem 'rails', '~> 7.1.0.beta1'
gem 'rails', '~> 7.1.0'

gemspec path: '..'
5 changes: 5 additions & 0 deletions gemfiles/rails_7_2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source 'https://rubygems.org'

gem 'rails', '~> 7.2.0'

gemspec path: '..'
5 changes: 5 additions & 0 deletions gemfiles/rails_8_0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source 'https://rubygems.org'

gem 'rails', '~> 8.0.0'

gemspec path: '..'

0 comments on commit 352abcf

Please sign in to comment.