Skip to content

Commit

Permalink
actually run the correct binary
Browse files Browse the repository at this point in the history
  • Loading branch information
paulcacheux committed Dec 8, 2023
1 parent 20f438b commit 739dec0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,16 @@ jobs:
- name: Run 2023 days
run: |
time ./target/release/aoc --year 2023
time ./target/release-lto/aoc --year 2023
- name: Run 2022 days
run: |
time ./target/release/aoc --year 2022
time ./target/release-lto/aoc --year 2022
- name: Run 2021 days
run: |
time ./target/release/aoc --year 2021
time ./target/release-lto/aoc --year 2021
- name: Run 2019 days
run: |
time ./target/release/aoc --year 2019
time ./target/release-lto/aoc --year 2019

0 comments on commit 739dec0

Please sign in to comment.