Skip to content

Commit

Permalink
Add user input execution to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lpenz committed Dec 16, 2023
1 parent 0c6a4e0 commit 4a5b2bd
Show file tree
Hide file tree
Showing 3 changed files with 1,115 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,18 @@ jobs:
coveralls: true
publish_cratesio: false
publish_github_release: false
solve:
strategy:
matrix:
day:
- 01
- 02
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.3
- run: |
cargo run \
--release \
-p day${{ matrix.day }} \
--bin day${{ matrix.day }}a \
< day${{ matrix.day }}/input.txt
Loading

0 comments on commit 4a5b2bd

Please sign in to comment.