Skip to content

Commit dfc7d86

Browse files
committed
re-enable full CI matrix
1 parent 76e1637 commit dfc7d86

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

.github/workflows/ci.yml

+17-1
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,24 @@ jobs:
1010
max-parallel: 2
1111
fail-fast: false
1212
matrix:
13-
ruby-version: ['2.7.8']
13+
ruby-version: ['2.6.10', '2.7.8', '3.0.6', '3.1.4', '3.2.2', '3.3.0']
1414
activerecord-version: ['5.2', '6.0', '6.1', '7.0', '7.1']
15+
exclude:
16+
# Rails 7's gemspec requires ruby >= 2.7
17+
- ruby-version: '2.6.10'
18+
activerecord-version: '7.0'
19+
- ruby-version: '2.6.10'
20+
activerecord-version: '7.1'
21+
# Rails 5.x is unlikely ever to support ruby >= 3.0
22+
# https://github.com/rails/rails/issues/40938#issuecomment-751569171
23+
- ruby-version: '3.0.6'
24+
activerecord-version: '5.2'
25+
- ruby-version: '3.1.4'
26+
activerecord-version: '5.2'
27+
- ruby-version: '3.2.2'
28+
activerecord-version: '5.2'
29+
- ruby-version: '3.3.0'
30+
activerecord-version: '5.2'
1531

1632
steps:
1733
- name: Cleanup

0 commit comments

Comments
 (0)