From 1ed9f908522700231835ffdccb3a67f978c5b5e5 Mon Sep 17 00:00:00 2001 From: dimgigov Date: Wed, 13 May 2026 12:40:31 +0300 Subject: [PATCH] debug(ci): add nim version check step before minimal test --- .github/workflows/debug.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index d075c2a..928d07d 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -11,9 +11,9 @@ jobs: - uses: actions/checkout@v4 - name: Setup Nim - uses: iffy/install-nim@v4 + uses: jiro4989/setup-nim-action@v1 with: - version: 'binary:2.2.10' + nim-version: '2.2.10' - name: Install system dependencies run: sudo apt-get update -qq && sudo apt-get install -y -qq libssl-dev libpcre3-dev openssl ca-certificates @@ -21,6 +21,12 @@ jobs: - name: Install Nim dependencies run: nimble install --depsOnly -y + - name: Check nim binary + run: | + which nim + nim --version + echo "NIM_OK=1" + - name: Compile and run minimal test run: nim c --threads:on --path:src -r tests/test_minimal.nim