Skip to content

Commit cee789a

Browse files
Update CI matrix
- Add Rails 8.1 (and exclude 3.1 because it requires 3.2) - Remove Edge/3.2 because it requires 3.3 now Co-authored-by: elasticspoon <quesadillaman@gmail.com>
1 parent 284156d commit cee789a

2 files changed

Lines changed: 17 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
ruby: ['3.1', '3.2', '3.3']
11-
rails: ['7.1', '7.2', '8.0', 'edge']
10+
ruby: ['3.1', '3.2', '3.3', '3.4', '4.0']
11+
rails: ['7.1', '7.2', '8.0', '8.1', 'edge']
1212
include:
1313
- ruby: '2.7'
1414
rails: '7.1'
@@ -18,6 +18,10 @@ jobs:
1818
- ruby: '3.1'
1919
rails: '8.0'
2020
- ruby: '3.1'
21+
rails: '8.1'
22+
- ruby: '3.1'
23+
rails: 'edge'
24+
- ruby: '3.2'
2125
rails: 'edge'
2226
env:
2327
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.rails }}.gemfile

gemfiles/rails_8.1.gemfile

Lines changed: 11 additions & 0 deletions
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-1-stable"
4+
gem "activerecord", github: "rails/rails", branch: "8-1-stable"
5+
gem "railties", github: "rails/rails", branch: "8-1-stable"
6+
7+
gem "rack", ">= 2.2.4", "< 4"
8+
gem "sqlite3"
9+
10+
gemspec :path => "../"
11+

0 commit comments

Comments
 (0)