From 3d327cf2aa05377e34685c33a5ec171b5e25a6e6 Mon Sep 17 00:00:00 2001 From: Finn Evers Date: Mon, 9 Feb 2026 23:13:27 +0100 Subject: [PATCH] extension_ci: Be more precise with clippy targets (#48824) This fixes an issue where we would run into build errors during testing. Release Notes: - N/A --- .github/workflows/extension_tests.yml | 2 +- tooling/xtask/src/tasks/workflows/extension_tests.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 {