ci: add rustup clippy
All checks were successful
ci/woodpecker/tag/woodpecker Pipeline was successful

This commit is contained in:
Didier Slof 2023-08-01 21:35:26 +02:00
parent 314bec4b0a
commit 6335be4b04
Signed by: didier
GPG key ID: 01E71F18AA4398E5

View file

@ -14,6 +14,7 @@ steps:
clippy: # check if the code compiles clippy: # check if the code compiles
image: rust image: rust
commands: commands:
- rustup component add clippy
- cargo clippy --release --no-deps --manifest-path bootpkg/Cargo.toml - cargo clippy --release --no-deps --manifest-path bootpkg/Cargo.toml
- cargo clippy --release --no-deps --manifest-path pkgr/Cargo.toml - cargo clippy --release --no-deps --manifest-path pkgr/Cargo.toml
pull: true pull: true