Compare commits

..

3 commits

Author SHA1 Message Date
35ca6a1ee2
Merge pull request 'docs: document how to add a new action' (!54) from aws-lambda-releases into main
Reviewed-on: #54
Reviewed-by: Michael.Seele@schmalz.de <Michael.Seele@schmalz.de>
2026-06-25 13:32:33 +00:00
8e3e1c83a7
Merge pull request 'chore(rust-build): clippy no longer fails on warnings' (!55) from rust-clippy-dont-fail-on-warning into main
Reviewed-on: #55
Reviewed-by: Michael.Seele@schmalz.de <Michael.Seele@schmalz.de>
2026-06-25 13:00:27 +00:00
a4cdd003e7 chore(rust-build): clippy no longer fails on warnings
All checks were successful
validate-shared-actions / validate-shared-actions (pull_request) Successful in 42s
Aikido Security PR Check / Aikido Security Scan (pull_request) Successful in 1m16s
The `-- -D warnings` option caused clippy to fail on warnings.
2026-06-25 12:46:40 +00:00

View file

@ -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