From 37e9d2b7120c7c02f60a19c6cd4f4ca0afa3f37b Mon Sep 17 00:00:00 2001 From: Diana Carvalho Date: Tue, 13 May 2025 14:52:05 +0100 Subject: [PATCH] ci: fix cargo clippy command in CI Took 7 minutes Took 4 minutes --- .github/workflows/tests-and-lints-template.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests-and-lints-template.yaml b/.github/workflows/tests-and-lints-template.yaml index 2c9ffcc..64665c4 100644 --- a/.github/workflows/tests-and-lints-template.yaml +++ b/.github/workflows/tests-and-lints-template.yaml @@ -111,7 +111,7 @@ jobs: with: cache-on-failure: true - - run: cargo clippy --workspace --lib --all-targets --all-features -- -D clippy::dbg-macro + - run: cargo +nightly clippy --workspace --lib --all-targets --all-features -- -D clippy::dbg-macro env: RUSTFLAGS: -Dwarnings