Justfile: Check cargo dep updates during "check"

This commit is contained in:
2021-12-21 16:15:12 +01:00
parent 4a9f1bc278
commit a3ccea9dcb

View File

@@ -1,8 +1,11 @@
check: test
check: check-cargo-lock test
cargo check
cargo fmt --check
cargo clippy --no-deps -- -Dwarnings
check-cargo-lock:
cargo update --locked
lint-fix:
cargo clippy --no-deps --fix