Treat lint warnings as errors in CI

Warnings will not show up if they don't fail CI.
This commit is contained in:
Lucas Schwiderski 2025-04-21 18:41:59 +02:00
parent e33e02457b
commit 1a000371fa
Signed by: lucas
GPG key ID: AA12679AAA6DF4D8

View file

@ -10,6 +10,6 @@ title "Install clippy"
rustup component add clippy
title "Run clippy"
cargo clippy --color always --no-deps
cargo clippy --color always --no-deps -- -D warnings
title "Done"