chore(rust-build): clippy no longer fails on warnings
The `-- -D warnings` option caused clippy to fail on warnings.
This commit is contained in:
parent
9eba110677
commit
a4cdd003e7
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue