Split action steps to avoid using && on Windows (#7885)

Merge pull request 7885
This commit is contained in:
Ashwin Maroli
2019-11-08 21:35:08 +05:30
committed by jekyllbot
parent 848759ca02
commit b1ee88397b

View File

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