Skip to content

Commit e7a00b4

Browse files
Add Ruby 3.2 to the CI matrix. Also update checkout action version.
1 parent b750ac7 commit e7a00b4

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,17 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
ruby: ['3.1', '3.0', '2.7', '2.6', '2.5']
12+
ruby: ['3.2', '3.1', '3.0', '2.7', '2.6', '2.5']
1313
rails: ['5.1', '5.2', '6.0', '6.1', '7.0']
1414
exclude:
15+
- ruby: '3.2'
16+
rails: '5.1'
17+
- ruby: '3.2'
18+
rails: '5.2'
19+
- ruby: '3.2'
20+
rails: '6.0'
21+
- ruby: '3.2'
22+
rails: '6.1'
1523
- ruby: '3.1'
1624
rails: '5.1'
1725
- ruby: '3.1'
@@ -29,7 +37,7 @@ jobs:
2937
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
3038
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.rails }}.gemfile
3139
steps:
32-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v3
3341
- name: Set up Ruby ${{ matrix.ruby }}
3442
uses: ruby/setup-ruby@v1
3543
with:

0 commit comments

Comments
 (0)