ci: add linter (clippy)
All checks were successful
ci/woodpecker/push/build Pipeline was successful

Any warning is treated as an error
This commit is contained in:
Laurens Miers 2025-05-23 10:29:55 +02:00
parent 877fc196af
commit 84a5cfa2e3

View file

@ -7,3 +7,8 @@ steps:
image: rust image: rust
commands: commands:
- cargo build - cargo build
- name: Linter
image: rust
commands:
- rustup component add clippy
- cargo clippy -- -Dwarnings