AdventOfCode/justfile

9 lines
222 B
Makefile
Raw Normal View History

gen year *day:
cargo run -- {{year}} {{day}}
run year day:
cargo run --package y{{year}} --bin d{{day}}
test year day *part='1':
cargo test --package y{{year}} --lib days::d{{day}}::tests::part{{part}} -- --nocapture