mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 17:08:21 +00:00
add fmt check to make
This commit is contained in:
parent
43afec3433
commit
9b1e921af8
1 changed files with 5 additions and 3 deletions
8
Makefile
8
Makefile
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue