From a4262550365845213bc619546654d0fd5f436285 Mon Sep 17 00:00:00 2001 From: dimgigov Date: Thu, 7 May 2026 10:47:02 +0300 Subject: [PATCH] fix(ci): install nimble dependencies before compiling --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4cf046..7b26b4c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,9 @@ jobs: with: nim-version: '2.2.10' + - name: Install dependencies + run: nimble install -y + - name: Run tests run: nim c -d:ssl --path:src -r tests/test_all.nim