From af193181d2b2880c46f3bb83bdc74855099cca0f Mon Sep 17 00:00:00 2001 From: Mike Perham Date: Fri, 28 Aug 2020 13:25:31 -0700 Subject: [PATCH] multi-ruby --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f245c252..b2b559e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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