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

Add ruby 2.7 and use an assortment of Redis versions

This commit is contained in:
Mike Perham 2020-06-02 14:44:47 -07:00
parent b09f34fec3
commit 07cc3825f7

View file

@ -34,7 +34,17 @@ jobs:
"ruby-2.6":
docker:
- image: circleci/ruby:2.6
- image: circleci/redis:4.0
- image: circleci/redis:5.0
steps:
- checkout
- <<: *restore
- <<: *bundle
- <<: *save
- <<: *unit
"ruby-2.7":
docker:
- image: circleci/ruby:2.7
- image: circleci/redis:6.0
steps:
- checkout
- <<: *restore
@ -58,3 +68,4 @@ workflows:
jobs:
- "ruby-2.5"
- "ruby-2.6"
- "ruby-2.7"