From ecffd6cd54d282d3a5ac12510a778e7b9d46ffb6 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Mon, 6 Apr 2026 12:09:08 -0600 Subject: [PATCH] github-ci: deny warnings in clippy check We currently have some clippy warnings in the ffi crate. They output to to the terminal but clippy exits with a success code. Typically we want to fix this, so deny warnings which will cause clippy to exit with an error code, failing ci. --- .github/workflows/builds.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 78cc1d9559..6212220aed 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -366,7 +366,7 @@ jobs: echo "::error ::Clippy --fix made changes, please fix" exit 1 fi - - run: cargo clippy --all-features --all-targets + - run: cargo clippy --workspace --all-features --all-targets -- -D warnings working-directory: rust # especially without debug feature - run: cargo clippy