gitui/Makefile
Stephan Dilly 41a52cfc8c more clean solution that does not need git cli
* make test run in parallel again
* better test structure
2020-03-28 13:45:19 +01:00

20 lines
316 B
Makefile

debug:
GITUI_LOGGING=true cargo run --features=timing
test:
cargo test --workspace
clippy:
cargo clean
cargo clippy --all-features
clippy-pedantic:
cargo clean
cargo clippy --all-features -- -W clippy::pedantic
install:
cargo install --path "."
install-debug:
cargo install --features=timing --path "."