From a4cdd003e742cc3336cc2b388cee981a59f5da18 Mon Sep 17 00:00:00 2001 From: Marcel Frey Date: Thu, 25 Jun 2026 12:46:40 +0000 Subject: [PATCH] chore(rust-build): clippy no longer fails on warnings The `-- -D warnings` option caused clippy to fail on warnings. --- rust-build/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-build/action.yml b/rust-build/action.yml index d12b6cb..a36a845 100644 --- a/rust-build/action.yml +++ b/rust-build/action.yml @@ -92,7 +92,7 @@ runs: for check in "${CHECKS[@]}"; do case "${check}" in fmt) cargo fmt --manifest-path="${WORKING_DIR}/Cargo.toml" --check ;; - clippy) cargo clippy --manifest-path="${WORKING_DIR}/Cargo.toml" --target="${CROSS_TARGET}" -- -D warnings ;; + clippy) cargo clippy --manifest-path="${WORKING_DIR}/Cargo.toml" --target="${CROSS_TARGET}" ;; test) cargo test --manifest-path="${WORKING_DIR}/Cargo.toml" ;; *) echo "Unknown check: ${check}"; exit 1 ;; esac