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
1 changed files with 4 additions and 2 deletions

View File

@ -31,8 +31,10 @@ jobs:
uses: actions/setup-ruby@v1 uses: actions/setup-ruby@v1
with: with:
ruby-version: 2.6.x ruby-version: 2.6.x
- name: 'Update Rubygems & Bundler' - name: 'Update Rubygems'
run: 'gem update --system --no-document && gem update bundler --no-document' run: 'gem update --system --no-document'
- name: 'Update Bundler'
run: 'gem update bundler --no-document'
- name: Set up bundle - name: Set up bundle
run: bundle install --jobs 4 --retry 3 run: bundle install --jobs 4 --retry 3
- name: Run Test Suite - name: Run Test Suite