Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Sep 13, 2024
1 parent 0de0b0e commit e4da20c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/actions/test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ runs:
- name: 🧪 Test
env:
VSTEST_TESTHOST_SHUTDOWN_TIMEOUT: 1000
run: dotnet test
run: dotnet test --no-build --verbosity normal --blame-hang-timeout 10s
shell: bash

# When using --blame-hang-timeout, the following snippet can be used to upload hang dumps
# - name: Upload hang dumps
# uses: actions/upload-artifact@v4
# with:
# name: hang-dumps-${{ runner.os }}
# path: ${{ github.workspace }}/**/*.dmp
# if-no-files-found: ignore
# if: failure()
# When using --blame-hang-timeout
- name: Upload hang dumps
uses: actions/upload-artifact@v4
with:
name: hang-dumps-${{ runner.os }}
path: ${{ github.workspace }}/**/*.dmp
if-no-files-found: ignore
if: failure()

0 comments on commit e4da20c

Please sign in to comment.