From b1ee88397b13d6628efb8720b08365e84ff016eb Mon Sep 17 00:00:00 2001 From: Ashwin Maroli Date: Fri, 8 Nov 2019 21:35:08 +0530 Subject: [PATCH] Split action steps to avoid using `&&` on Windows (#7885) Merge pull request 7885 --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 03e61780..54da8a64 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,8 +31,10 @@ jobs: uses: actions/setup-ruby@v1 with: ruby-version: 2.6.x - - name: 'Update Rubygems & Bundler' - run: 'gem update --system --no-document && gem update bundler --no-document' + - name: 'Update Rubygems' + run: 'gem update --system --no-document' + - name: 'Update Bundler' + run: 'gem update bundler --no-document' - name: Set up bundle run: bundle install --jobs 4 --retry 3 - name: Run Test Suite