mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
multi-ruby
This commit is contained in:
parent
70e4a3d420
commit
af193181d2
1 changed files with 6 additions and 1 deletions
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
|
@ -11,6 +11,10 @@ jobs:
|
|||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
ruby: [2.5, 2.6, 2.7]
|
||||
services:
|
||||
redis:
|
||||
image: redis
|
||||
|
@ -29,7 +33,8 @@ jobs:
|
|||
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: [2.5, 2.6, 2.7]
|
||||
bundler-cache: true
|
||||
ruby-version: ${{ matrix.ruby }}
|
||||
- name: Install dependencies
|
||||
run: bundle install
|
||||
- name: Run tests
|
||||
|
|
Loading…
Reference in a new issue