add fmt check to make

This commit is contained in:
Stephan Dilly 2020-05-22 22:43:47 +02:00
parent 43afec3433
commit 9b1e921af8

View File

@ -25,12 +25,14 @@ release-linux-musl:
test:
cargo test --workspace
clippy:
check:
cargo fmt -- --check
cargo clean -p gitui -p asyncgit -p scopetime
cargo clippy --all-features
clippy-pedantic:
cargo clean
check-pedantic:
cargo fmt -- --check
cargo clean -p gitui -p asyncgit -p scopetime
cargo clippy --all-features -- -W clippy::pedantic
install: