From 8cdc07c860f75a3bff1214af6ef16035aae26664 Mon Sep 17 00:00:00 2001 From: Jason Date: Thu, 2 Apr 2026 20:38:31 +0800 Subject: [PATCH] ci: run cargo tests single-threaded to fix HOME env race --- .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 8db299608..c9e4e42a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,4 +96,4 @@ jobs: run: cargo clippy --manifest-path src-tauri/Cargo.toml -- -D warnings - name: Run tests - run: cargo test --manifest-path src-tauri/Cargo.toml + run: cargo test --manifest-path src-tauri/Cargo.toml -- --test-threads=1