advent-of-code/Makefile

12 lines
193 B
Makefile
Raw Normal View History

# requires cargo-watch
watch:
cargo watch -x clippy
check:
2021-11-25 16:53:58 +01:00
cargo test --workspace --release
2021-11-25 16:53:58 +01:00
check-all:
cargo test --workspace --release -- --include-ignored
.PHONY: watch check check-all