From 12ec99dd147a7c5cd60f7f31d737c76754c8e896 Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Wed, 9 Oct 2024 20:02:11 -0400 Subject: [PATCH] fix(ci): use --workspace, not --all --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc91f4a..6515705 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,8 +24,8 @@ jobs: - name: cargo fmt run: cargo fmt --all --check - name: cargo clippy - run: cargo clippy --tests --all -- -D warnings + run: cargo clippy --tests --workspace -- -D warnings - name: cargo check - run: cargo check --all + run: cargo check --workspace - name: cargo test run: cargo test