From e35fd6d6b7d9a8ba37ee621835ef91372c2565cb Mon Sep 17 00:00:00 2001 From: Mattia Pitossi Date: Fri, 27 Feb 2026 08:40:05 +0100 Subject: [PATCH] ci: fix patch during clippy step (#7935) * fix the ci issue * fix readme * fix ci --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 076e85b18..db5ec90bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -826,6 +826,8 @@ jobs: cargo clippy --workspace --exclude tokio --tests --no-deps --features $TOKIO_STABLE_FEATURES - name: "clippy --workspace --all-features --unstable" run: | + # Forcing the cargo lock regeneration to apply the tokio patch + rm Cargo.lock cargo clippy --workspace --tests --no-deps --all-features --config 'patch.crates-io.tokio.path="tokio"' # check without path dependencies cargo clippy --workspace --exclude tokio --tests --no-deps --all-features