From 82da09760c19900dd9203ac23bfe903c43390269 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sun, 12 Feb 2023 16:38:09 +0000 Subject: [PATCH] ci: use --workspace instead of deprecated --all flag --- .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 6d7b45cbc..4000e7296 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,10 +79,10 @@ jobs: uses: swatinem/rust-cache@v2 - name: Check - run: cargo check --all --bins --examples --tests --benches + run: cargo check --workspace --bins --examples --tests --benches - name: Tests - run: cargo test --all + run: cargo test --workspace - name: Test cargo vendor run: cargo vendor