Skip to content

Commit

Permalink
Update CI matrix
Browse files Browse the repository at this point in the history
- Remove test for Gemfile against Ruby 3.1 because Rails main branch now requires Ruby 3.2.
- Add tests for Rails 8.0.0.rc1 or higher with Ruby 3.2 that is minimum required version for Rails 8.0.
  • Loading branch information
yahonda committed Oct 23, 2024
1 parent 2c04236 commit ffba004
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,11 @@ jobs:
- ruby: 3.1
gemfile: "gemfiles/Gemfile.rails-7.2-sprockets-4"

- ruby: 3.1
gemfile: Gemfile
- ruby: 3.2
gemfile: "gemfiles/Gemfile.rails-8.0-sprockets-3"
- ruby: 3.2
gemfile: "gemfiles/Gemfile.rails-8.0-sprockets-4"

- ruby: 3.2
gemfile: Gemfile
- ruby: 3.3
Expand Down
6 changes: 6 additions & 0 deletions gemfiles/Gemfile.rails-8.0-sprockets-3
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
source 'https://rubygems.org'
gemspec path: '..'

gem 'actionpack', '~> 8.0.0.rc1'
gem 'railties', '~> 8.0.0.rc1'
gem 'sprockets', '~> 3.0'
6 changes: 6 additions & 0 deletions gemfiles/Gemfile.rails-8.0-sprockets-4
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
source 'https://rubygems.org'
gemspec path: '..'

gem 'actionpack', '~> 8.0.0.rc1'
gem 'railties', '~> 8.0.0.rc1'
gem 'sprockets', '~> 4.0'

0 comments on commit ffba004

Please sign in to comment.