From 66fb829dbc0f96cbf4319798f3b9090bc88a7012 Mon Sep 17 00:00:00 2001 From: Fijxu Date: Mon, 3 Aug 2026 17:15:31 -0400 Subject: [PATCH] CI: Exclude development dependencies from build job (#5860) * CI: Exclude development dependencies from build job * use --production and then install spectator to skip building of Ameba * this should prevent ameba from building --- .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 c62cfcf5..af7e7266 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,7 +80,7 @@ jobs: - name: Install Shards run: | if ! shards check; then - shards install + shards install --skip-postinstall --skip-executables fi - name: Run tests