Skip to content

Commit 952bc2d

Browse files
committed
Add Rails 7.2 and 8.0 to test matrix
1 parent e7ea2d4 commit 952bc2d

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,19 @@ 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: '8.0'
1315
- ruby: '2.7'
1416
rails: 'edge'
1517
- ruby: '3.0'
18+
rails: '8.0'
19+
- ruby: '3.0'
20+
rails: 'edge'
21+
- ruby: '3.1'
22+
rails: '8.0'
23+
- ruby: '3.1'
1624
rails: 'edge'
1725
env:
1826
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.rails }}.gemfile

gemfiles/rails_7.2.gemfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+
gem "rack", "< 3"
7+
gem "sqlite3", "~> 1.4"
8+
9+
gemspec :path => "../"
10+

gemfiles/rails_8.0.gemfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+
gem "rack", "< 3"
7+
gem "sqlite3", "~> 1.4"
8+
9+
gemspec :path => "../"
10+

0 commit comments

Comments
 (0)