Skip to content

Commit

Permalink
Remove day04 regex dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
Oberacda committed Dec 4, 2023
1 parent 68002db commit 2184cb6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .config/nextest.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[profile.default.junit]
# Output a JUnit report into the given file inside 'store.dir/<profile-name>'.
# If unspecified, JUnit is not written out.
path = "aoc_junit.xml"
10 changes: 8 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
- uses: taiki-e/install-action@nextest
- name: Clippy
uses: actions-rs/cargo@v1
with:
Expand All @@ -31,5 +32,10 @@ jobs:
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --all-features
command: nextest run
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: |
target/nextest/default/*.xml
1 change: 0 additions & 1 deletion day04/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,3 @@ name = "day04_part1"
name = "day04_part2"

[dependencies]
regex = "1.10.2"

0 comments on commit 2184cb6

Please sign in to comment.