Skip to content

Commit 12ff474

Browse files
committed
Add Rails 7.2 and 8.0 to test matrix
1 parent e7ea2d4 commit 12ff474

File tree

3 files changed

+35
-1
lines changed

3 files changed

+35
-1
lines changed

.github/workflows/ci.yml

+13-1
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,23 @@ jobs:
88
fail-fast: false
99
matrix:
1010
ruby: ['2.7', '3.0', '3.1', '3.2', '3.3']
11-
rails: ['7.0', '7.1', 'edge']
11+
rails: ['7.0', '7.1', '7.2', '8.0', 'edge']
1212
exclude:
13+
- ruby: '2.7'
14+
rails: '7.2'
15+
- ruby: '2.7'
16+
rails: '8.0'
1317
- ruby: '2.7'
1418
rails: 'edge'
1519
- ruby: '3.0'
20+
rails: '7.2'
21+
- ruby: '3.0'
22+
rails: '8.0'
23+
- ruby: '3.0'
24+
rails: 'edge'
25+
- ruby: '3.1'
26+
rails: '8.0'
27+
- ruby: '3.1'
1628
rails: 'edge'
1729
env:
1830
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.rails }}.gemfile

gemfiles/rails_7.2.gemfile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
source "https://rubygems.org"
2+
3+
gem "actionpack", github: "rails/rails", branch: "7-2-stable"
4+
gem "activerecord", github: "rails/rails", branch: "7-2-stable"
5+
gem "railties", github: "rails/rails", branch: "7-2-stable"
6+
7+
gem "rack", ">= 2.2.4", "< 4"
8+
gem "sqlite3"
9+
10+
gemspec :path => "../"
11+

gemfiles/rails_8.0.gemfile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
source "https://rubygems.org"
2+
3+
gem "actionpack", github: "rails/rails", branch: "8-0-stable"
4+
gem "activerecord", github: "rails/rails", branch: "8-0-stable"
5+
gem "railties", github: "rails/rails", branch: "8-0-stable"
6+
7+
gem "rack", ">= 2.2.4", "< 4"
8+
gem "sqlite3"
9+
10+
gemspec :path => "../"
11+

0 commit comments

Comments
 (0)