advent-of-code/Makefile

14 lines
289 B
Makefile
Raw Normal View History

# requires cargo-watch
watch:
cargo watch -x clippy
check:
cargo test --all --release
# run these in release mode because the reason they're ignored is usually that
# they take a long time to run
check-all: check
2020-12-15 11:04:54 +01:00
cargo test --all --release -- --ignored
.PHONY: watch check check-all