Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .config/nextest.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# JUnit output for Codecov Test Analytics (used by the `ci` profile in CI).
[profile.ci.junit]
path = "junit.xml"
9 changes: 8 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,14 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: cargo test
- uses: taiki-e/install-action@nextest
Comment thread
twangodev marked this conversation as resolved.
- run: cargo nextest run --profile ci
- name: Upload test results to Codecov
if: ${{ !cancelled() && matrix.os == 'ubuntu-latest' }}
uses: codecov/codecov-action@v5
with:
report_type: test_results
files: target/nextest/ci/junit.xml

coverage:
name: Coverage
Expand Down
Loading