From 14791d8be6e4d9c89dc1c06de45ca4e434ceb511 Mon Sep 17 00:00:00 2001 From: dimgigov Date: Wed, 13 May 2026 12:59:26 +0300 Subject: [PATCH] debug(ci): remove || true mask from test_all run --- .github/workflows/debug.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index a8a1b8b..cbcb876 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -31,7 +31,7 @@ jobs: run: nim c -d:ssl --threads:on --path:src tests/test_all.nim - name: Run test_all binary - run: ./tests/test_all > test_all.log 2>&1 || true + run: ./tests/test_all > test_all.log 2>&1 - name: Upload test_all log to repo if: always()