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