.github/workflows/ci.yml in sidekiq-throttled-0.14.1 vs .github/workflows/ci.yml in sidekiq-throttled-0.15.0
- old
+ new
@@ -9,13 +9,14 @@
jobs:
rspec:
name: "rspec (ruby:${{ matrix.ruby }} sidekiq:${{ matrix.sidekiq }})"
strategy:
+ fail-fast: false
matrix:
- ruby: [ "2.6", "2.7" ]
- sidekiq: [ "5.0", "5.1", "5.2", "6.0", "6.1" ]
+ ruby: [ "2.6", "2.7", "3.0" ]
+ sidekiq: [ "5.0", "5.1", "5.2", "6.0", "6.1", "6.2", "6.3" ]
runs-on: ubuntu-latest
services:
redis:
@@ -30,25 +31,21 @@
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
+ bundler-cache: true
- - name: bundle install
- run: bundle install --without development --jobs 4 --retry 3
-
- run: bundle exec rspec
rubocop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
- ruby-version: "2.4"
-
- - name: bundle install
- run: bundle install --without development --jobs 4 --retry 3
+ ruby-version: "2.6"
+ bundler-cache: true
- run: bundle exec rubocop