Skip to content

Commit c334fe8

Browse files
chore: add Ruby 4.0 to CI matrix, run lint checks on 3.4 and 4.0
1 parent 70a88e9 commit c334fe8

1 file changed

Lines changed: 2 additions & 15 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -21,25 +21,12 @@ 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:
3131
STREAM_KEY: ${{ secrets.STREAM_CHAT_API_KEY }}
3232
STREAM_SECRET: ${{ secrets.STREAM_CHAT_API_SECRET }}
33-
34-
audit:
35-
runs-on: ubuntu-latest
36-
name: 🔒 Bundle Audit
37-
steps:
38-
- uses: actions/checkout@v4
39-
40-
- uses: ruby/setup-ruby@v1
41-
with:
42-
ruby-version: "3.4"
43-
bundler-cache: true
44-
45-
- run: bundle exec bundle-audit check --update

0 commit comments

Comments
 (0)