CI: create fake inputs so tests can run
All checks were successful
test / AoC 2024 (push) Successful in 1m27s

This commit is contained in:
Keenan Tims 2024-12-13 23:06:15 -08:00
parent 74a6b16924
commit 8ae2115b52
Signed by: ktims
GPG Key ID: 11230674D69038D4

View File

@ -20,6 +20,11 @@ jobs:
components: clippy, rustfmt components: clippy, rustfmt
toolchain: stable toolchain: stable
- name: fake inputs
run: |
mkdir -p input/2024/
for i in $(seq 1 25); do touch input/2024/day${i}.txt; done
- name: cargo test - name: cargo test
run: cargo test --lib --all-features run: cargo test --lib --all-features