From dfe6554b1c3f0cfc5964e6a26e442860a1c051bb Mon Sep 17 00:00:00 2001 From: Mick Grove Date: Thu, 12 Feb 2026 16:07:55 -0800 Subject: [PATCH] Fixed CI runner failure when executing tests --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6ac5e4..f009ef4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,9 @@ jobs: - name: Build (Makefile linux-arm64) run: make linux-arm64 - name: Run tests - run: make tests + env: + CARGO_BUILD_JOBS: "2" + run: cargo test --workspace --all-targets -- --test-threads=1 macos-arm64: name: macOS arm64