Skip to content

Commit ffba004

Browse files
committed
Update CI matrix
- 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.
1 parent 2c04236 commit ffba004

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

.github/workflows/ci.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,11 @@ jobs:
2727
- ruby: 3.1
2828
gemfile: "gemfiles/Gemfile.rails-7.2-sprockets-4"
2929

30-
- ruby: 3.1
31-
gemfile: Gemfile
30+
- ruby: 3.2
31+
gemfile: "gemfiles/Gemfile.rails-8.0-sprockets-3"
32+
- ruby: 3.2
33+
gemfile: "gemfiles/Gemfile.rails-8.0-sprockets-4"
34+
3235
- ruby: 3.2
3336
gemfile: Gemfile
3437
- ruby: 3.3
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source 'https://rubygems.org'
2+
gemspec path: '..'
3+
4+
gem 'actionpack', '~> 8.0.0.rc1'
5+
gem 'railties', '~> 8.0.0.rc1'
6+
gem 'sprockets', '~> 3.0'
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source 'https://rubygems.org'
2+
gemspec path: '..'
3+
4+
gem 'actionpack', '~> 8.0.0.rc1'
5+
gem 'railties', '~> 8.0.0.rc1'
6+
gem 'sprockets', '~> 4.0'

0 commit comments

Comments
 (0)