11 lines
286 B
Makefile
11 lines
286 B
Makefile
.PHONY: test lint fuzz-smoke
|
|
|
|
test:
|
|
cargo test --workspace
|
|
|
|
lint:
|
|
cargo fmt --all -- --check
|
|
cargo clippy --workspace --all-targets -- -D warnings
|
|
|
|
fuzz-smoke:
|
|
@where cargo-fuzz >NUL 2>&1 && cargo fuzz run frame_decode -- -max_total_time=5 || echo cargo-fuzz not installed; skipping
|