mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Disable fail-fast of GitHub Actions
This is default: true https://help.github.com/en/articles/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast When `make check` fails, we do not want to cancel `make test-bundler`.
This commit is contained in:
parent
75d29db8f9
commit
045152df9e
3 changed files with 3 additions and 0 deletions
1
.github/workflows/macos.yml
vendored
1
.github/workflows/macos.yml
vendored
|
@ -12,6 +12,7 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
test_task: [ "check", "test-bundler", "test-bundled-gems" ]
|
||||
fail-fast: false
|
||||
steps:
|
||||
- name: Disable Firewall
|
||||
run: |
|
||||
|
|
1
.github/workflows/ubuntu.yml
vendored
1
.github/workflows/ubuntu.yml
vendored
|
@ -12,6 +12,7 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
test_task: [ "test-bundler", "test-bundled-gems" ]
|
||||
fail-fast: false
|
||||
steps:
|
||||
- name: Install libraries
|
||||
run: |
|
||||
|
|
1
.github/workflows/windows.yml
vendored
1
.github/workflows/windows.yml
vendored
|
@ -18,6 +18,7 @@ jobs:
|
|||
vs: 2019
|
||||
- os: windows-2019
|
||||
vs: 2017
|
||||
fail-fast: false
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- name: Install libraries with vcpkg
|
||||
|
|
Loading…
Add table
Reference in a new issue