From 9b1716dd290cea2ec9e383136d6b475a3b859910 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Thu, 6 Aug 2026 14:02:39 +0900 Subject: [PATCH] ci: fail fast with backend hang evidence --- .gitea/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 7b5d60fa..ea324b70 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -54,7 +54,10 @@ jobs: - run: dotnet run --project src/KArtSell.DbMigrator -c Release --no-build env: KARTSELL_POSTGRES: Host=localhost;Port=5432;Database=kartsell;Username=kartsell;Password=kartsell - - run: dotnet test KArtSell.sln --no-build -c Release --logger trx + - name: Run backend tests with hang evidence + run: >- + dotnet test KArtSell.sln --no-build -c Release --logger trx + --blame-hang --blame-hang-timeout 2m env: KARTSELL_POSTGRES: Host=localhost;Port=5432;Database=kartsell;Username=kartsell;Password=kartsell -- 2.52.0