Skip to content

Commit 76bcfad

Browse files
committed
Try handle flaky macOS tests
1 parent 0ae3090 commit 76bcfad

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
build:
1818
runs-on: ${{ matrix.os }}
1919
strategy:
20+
fail-fast: false
2021
matrix:
2122
os: [windows-latest, ubuntu-latest, macos-latest]
2223

@@ -35,4 +36,8 @@ jobs:
3536
run: dotnet build --configuration Release --no-restore
3637

3738
- name: Test
38-
run: dotnet test --configuration Release --no-build --verbosity normal
39+
uses: nick-fields/retry@v3
40+
with:
41+
timeout_minutes: 15
42+
max_attempts: 3
43+
command: dotnet test --configuration Release --no-build --verbosity normal

0 commit comments

Comments
 (0)