mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 09:28:21 +00:00
25 lines
No EOL
369 B
Makefile
25 lines
No EOL
369 B
Makefile
|
|
.PHONY: test
|
|
|
|
debug:
|
|
GITUI_LOGGING=true cargo run --features=timing
|
|
|
|
build-release:
|
|
cargo build --release
|
|
|
|
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 "."
|