debug(ci): capture test output to log for debugging GitHub Actions failure

This commit is contained in:
2026-05-13 12:02:01 +03:00
parent f6781c107e
commit 6978097768
+5 -1
View File
@@ -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