From 942910fae5aeef51eac321acb0e14338013f2a68 Mon Sep 17 00:00:00 2001 From: dimgigov Date: Wed, 13 May 2026 12:05:49 +0300 Subject: [PATCH] debug(ci): print nim version, nimble packages, system info --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e32337..a58cfaa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,13 @@ jobs: - name: Install Nim dependencies run: nimble install --depsOnly -y + - name: Debug environment + run: | + nim --version + nimble list -i + uname -a + free -h + - name: Run tests run: | nim c -d:ssl --threads:on --path:src -r tests/test_all.nim > test_output.log 2>&1