Files
jj-cz/justfile

46 lines
729 B
Makefile
Raw Normal View History

2026-02-05 16:25:14 +01:00
default: run
run:
cargo run
run-release:
cargo run --release
format:
cargo fmt --all
format-check:
cargo fmt --check --all
audit:
cargo deny check
build:
cargo build
build-release:
cargo build --release
lint:
cargo clippy --all-targets --features test-utils
2026-02-05 16:25:14 +01:00
lint-report:
cargo clippy --all-targets --features test-utils --message-format=json > coverage/clippy.json 2> /dev/null
2026-02-05 16:25:14 +01:00
test:
cargo test --features test-utils
2026-02-05 16:25:14 +01:00
coverage:
mkdir -p coverage
cargo tarpaulin --config .tarpaulin.local.toml --features test-utils
2026-02-05 16:25:14 +01:00
coverage-ci:
mkdir -p coverage
cargo tarpaulin --config .tarpaulin.ci.toml --features test-utils
2026-02-05 16:25:14 +01:00
check-all: format-check lint coverage audit
## Local Variables:
## mode: makefile
## End: