From 9c7dc5579e0cc360ecbd2a3f33a538a141af5cd8 Mon Sep 17 00:00:00 2001 From: dimgigov Date: Thu, 7 May 2026 11:15:41 +0300 Subject: [PATCH] ci(debug): capture test output to logs for debugging --- .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 75ccc04..d017a5e 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 --path:src -r tests/test_all.nim + run: nim c -d:ssl --path:src -r tests/test_all.nim 2>&1 | tee test_output.log || true + + - name: Show test output + if: always() + run: cat test_output.log | tail -n 50 - name: Compile benchmarks run: nim c -d:release benchmarks/bench_all.nim