AdventOfCode/justfile

9 lines
221 B
Makefile

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