/ Justfile
Justfile
1 ci: && fmt check test done 2 3 fmt: 4 cargo fmt 5 6 test: 7 cargo test 8 9 check: 10 cargo check 11 cargo clippy 12 13 build: 14 cargo build 15 16 done: 17 @echo "✨✨ Done ✨✨" 18 19 run year day part input: 20 @RUST_LOG=DEBUG cargo run -- -y {{year}} -d {{day}} -p {{part}} -i {{input}} 21 @just done