From f50cbd15550fd0cab7f260ea8ec4800ae4b5386e Mon Sep 17 00:00:00 2001 From: dimgigov Date: Wed, 13 May 2026 12:04:59 +0300 Subject: [PATCH] debug(ci): upload test_output.log as artifact on failure --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fc961bc..8e32337 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,6 +30,13 @@ jobs: tail -n 200 test_output.log exit $EXIT + - name: Upload test log on failure + if: failure() + uses: actions/upload-artifact@v4 + with: + name: test-log + path: test_output.log + - name: Compile benchmarks run: nim c -d:release --threads:on benchmarks/bench_all.nim