Skip to content

Commit ede9213

Browse files
committed
Disable actions fast-fail
1 parent f961736 commit ede9213

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/ci-test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
ci:
1111
name: dotnet
1212
strategy:
13+
fail-fast: false
1314
matrix:
1415
os: [ windows-latest, macos-latest, ubuntu-latest ]
1516
runs-on: ${{ matrix.os }}
@@ -43,8 +44,8 @@ jobs:
4344
shell: pwsh
4445
run: ./pwsh/tools/install-powershell.ps1 -Preview -Destination ./preview
4546

46-
- name: Start VS Code Tunnel if in debug mode
47-
if: ${{ runner.debug == '1' }}
47+
- name: Start VS Code Tunnel if failed or in debug mode
48+
if: ${{ failure() || runner.debug == '1' }}
4849
uses: justingrote/[email protected]
4950
with:
5051
#All these settings are optional

0 commit comments

Comments
 (0)