We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ae3090 commit 76bcfadCopy full SHA for 76bcfad
.github/workflows/test.yml
@@ -17,6 +17,7 @@ jobs:
17
build:
18
runs-on: ${{ matrix.os }}
19
strategy:
20
+ fail-fast: false
21
matrix:
22
os: [windows-latest, ubuntu-latest, macos-latest]
23
@@ -35,4 +36,8 @@ jobs:
35
36
run: dotnet build --configuration Release --no-restore
37
38
- name: Test
- 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