Skip to content

Commit e26955d

Browse files
chore: add Ruby 4.0 to CI matrix, run lint checks on 3.4 and 4.0
1 parent 5b2b70a commit e26955d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
max-parallel: 1
1010
matrix:
11-
ruby: ["3.0", "3.1", "3.4"]
11+
ruby: ["3.0", "3.1", "3.4", "4.0"]
1212
name: 💎 Ruby ${{ matrix.ruby }}
1313
steps:
1414
- uses: actions/checkout@v4
@@ -21,10 +21,10 @@ jobs:
2121
bundler-cache: true
2222

2323
- run: bundle exec rake rubocop
24-
if: ${{ matrix.ruby == '3.4' }}
24+
if: ${{ matrix.ruby == '3.4' || matrix.ruby == '4.0' }}
2525

2626
- run: bundle exec srb tc
27-
if: ${{ matrix.ruby == '3.4' }}
27+
if: ${{ matrix.ruby == '3.4' || matrix.ruby == '4.0' }}
2828

2929
- run: bundle exec rspec ./spec --require spec_helper
3030
env:

0 commit comments

Comments
 (0)