From 7358c180c54c00277a860d751a2581ff83819672 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Fri, 1 Aug 2025 18:02:24 +0100 Subject: [PATCH] Use --workspace instead of deprecated --all --- .github/workflows/ci.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8eaccaa..ea159fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: - name: Run clippy run: | cargo clippy -- --version - cargo clippy --all --all-targets -- -Dwarnings + cargo clippy --workspace --all-targets -- -Dwarnings build: strategy: diff --git a/README.md b/README.md index 9aaddd3..dcc910b 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Actions CI workflow for examples on what should be extracted where. To run the Rust tests: ``` -cargo test --all +cargo test --workspace ``` To run the benchmarks: