diff --git a/.github/workflows/extension_tests.yml b/.github/workflows/extension_tests.yml index 6fe06d474af4f43984695ee80166c5726a632c3d..76bbc423f66ff560e0179c71d0eda9cf222b28aa 100644 --- a/.github/workflows/extension_tests.yml +++ b/.github/workflows/extension_tests.yml @@ -68,7 +68,7 @@ jobs: - name: steps::cargo_fmt run: cargo fmt --all -- --check - name: extension_tests::run_clippy - run: cargo clippy --release --all-targets --all-features -- --deny warnings + run: cargo clippy --release --all-features -- --deny warnings - name: steps::cargo_install_nextest uses: taiki-e/install-action@nextest - name: steps::cargo_nextest diff --git a/tooling/xtask/src/tasks/workflows/extension_tests.rs b/tooling/xtask/src/tasks/workflows/extension_tests.rs index a5d29bdccb9d6217ef3dc87d30798fbe536fce95..02ed264682bea94db558bfe42983cd8235ddfb06 100644 --- a/tooling/xtask/src/tasks/workflows/extension_tests.rs +++ b/tooling/xtask/src/tasks/workflows/extension_tests.rs @@ -53,7 +53,7 @@ fn install_rust_target() -> Step { } fn run_clippy() -> Step { - named::bash("cargo clippy --release --all-targets --all-features -- --deny warnings") + named::bash("cargo clippy --release --all-features -- --deny warnings") } fn check_rust() -> NamedJob {