advent-of-code/Makefile
2021-11-25 16:53:58 +01:00

12 lines
193 B
Makefile

# requires cargo-watch
watch:
cargo watch -x clippy
check:
cargo test --workspace --release
check-all:
cargo test --workspace --release -- --include-ignored
.PHONY: watch check check-all