Advent of Code solutions in Rust

ci: run tests through nextest on spindle

authored by jonas.tngl.sh and committed by

Tangled e6afa7ce df96f331

+5 -1
+5 -1
.tangled/workflows/rust.yml
··· 12 12 - rustc 13 13 - cargo 14 14 - clippy 15 + - cargo-nextest 15 16 16 17 steps: 17 18 - name: "Build all projects" ··· 19 20 cargo build --release --verbose --locked 20 21 - name: "Clippy" 21 22 command: | 22 - cargo clippy --release --workspace --locked 23 + cargo clippy --release --workspace --locked 24 + - name: Run tests 25 + command: | 26 + cargo nextest run --release --locked