From a52487f079256cd2a7116df0a4fe95bff4cebc9d Mon Sep 17 00:00:00 2001 From: Firelight Flagboy Date: Tue, 24 Oct 2023 09:42:28 +0200 Subject: [PATCH] Simplify cargo-clippy step --- .github/workflows/ci-rust.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-rust.yml b/.github/workflows/ci-rust.yml index 0056f38f115..e79c19df149 100644 --- a/.github/workflows/ci-rust.yml +++ b/.github/workflows/ci-rust.yml @@ -135,9 +135,8 @@ jobs: # Clippy basically compile the project, hence it's faster to run it in # the test-rust-matrix job where compilation cache is reused ! - - uses: ./.github/actions/use-pre-commit - with: - extra-args: clippy --verbose + - name: Check rust lint with cargo-clippy + run: cargo clippy --workspace timeout-minutes: 10 - name: Check rust code format