From 33dc6c54f6ee934a177dfbf01540687ab5de19ff Mon Sep 17 00:00:00 2001 From: Ryan Lamb <4955475+kinyoklion@users.noreply.github.com> Date: Fri, 12 Dec 2025 15:58:43 -0800 Subject: [PATCH] chore: Add per-test hang timeout. --- .github/actions/ci/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/ci/action.yml b/.github/actions/ci/action.yml index aa34d1d1..3e314ecb 100644 --- a/.github/actions/ci/action.yml +++ b/.github/actions/ci/action.yml @@ -75,7 +75,7 @@ runs: shell: bash run: | dotnet restore ${{ inputs.test_project_file }} - dotnet test -v=${{ inputs.test_verbosity }} --framework=${{ inputs.target_test_framework }} ${{ inputs.test_project_file }} + dotnet test --blame-hang-timeout=60s -v=${{ inputs.test_verbosity }} --framework=${{ inputs.target_test_framework }} ${{ inputs.test_project_file }} - name: Remove global.json shell: bash