From 2bb49a9cb78ef6d9fa52d43736d9622ba893efda Mon Sep 17 00:00:00 2001 From: dimgigov Date: Thu, 7 May 2026 10:53:39 +0300 Subject: [PATCH] fix(ci): use nimble install --depsOnly to avoid building project during dep install --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b26b4c..ef5b672 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: nim-version: '2.2.10' - name: Install dependencies - run: nimble install -y + run: nimble install --depsOnly -y - name: Run tests run: nim c -d:ssl --path:src -r tests/test_all.nim