From 69780977682d5caaa94d73306960c372d98da0e7 Mon Sep 17 00:00:00 2001 From: dimgigov Date: Wed, 13 May 2026 12:02:01 +0300 Subject: [PATCH] debug(ci): capture test output to log for debugging GitHub Actions failure --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 34b4c72..fc961bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,11 @@ jobs: run: nimble install --depsOnly -y - name: Run tests - run: nim c -d:ssl --threads:on --path:src -r tests/test_all.nim + run: | + nim c -d:ssl --threads:on --path:src -r tests/test_all.nim > test_output.log 2>&1 + EXIT=$? + tail -n 200 test_output.log + exit $EXIT - name: Compile benchmarks run: nim c -d:release --threads:on benchmarks/bench_all.nim