advent-of-code/Makefile

14 lines
279 B
Makefile

# requires cargo-watch
watch:
cargo watch -x clippy
check:
cargo test --all
# run these in release mode because the reason they're ignored is usually that
# they take a long time to run
check-all: check
cargo test --all --release -- --ignored
.PHONY: watch check check-all