From 8ae2115b5205c9161ad0db7f719eb976e0b390c1 Mon Sep 17 00:00:00 2001 From: Keenan Tims Date: Fri, 13 Dec 2024 23:06:15 -0800 Subject: [PATCH] CI: create fake inputs so tests can run --- .github/workflows/test.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 04acc33..7dac880 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -20,6 +20,11 @@ jobs: components: clippy, rustfmt 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 run: cargo test --lib --all-features