From 5e741a27cc9573517b4dcc79a596b0480c4da052 Mon Sep 17 00:00:00 2001 From: Daniel Szoke Date: Tue, 22 Jul 2025 11:34:52 +0200 Subject: [PATCH] ci(test): Replace `--all` with `--workspace` According to `cargo test --help`, `--all` is a deprecated alias to `--workspace`. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4606220dcd..2e523f8ae2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,4 +35,4 @@ jobs: uses: swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # 2.8.0 - name: Run Cargo Tests - run: cargo test --all + run: cargo test --workspace