1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

multi-ruby

This commit is contained in:
Mike Perham 2020-08-28 13:25:31 -07:00
parent 70e4a3d420
commit af193181d2

View file

@ -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