mirror of
https://old.git.ood.ovh/nehu/tokio-messaging.git
synced 2025-04-28 22:27:04 +02:00
Use a unit test reporter
This commit is contained in:
parent
37d99a70c2
commit
99a94702d0
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,6 @@
|
||||||
[profile.ci]
|
[profile.ci]
|
||||||
# Don't fail fast in CI to run the full test suite.
|
# Don't fail fast in CI to run the full test suite.
|
||||||
fail-fast = false
|
fail-fast = false
|
||||||
|
|
||||||
|
[profile.ci.junit]
|
||||||
|
path = "junit.xml"
|
||||||
|
|
7
.github/workflows/rust.yml
vendored
7
.github/workflows/rust.yml
vendored
|
@ -68,5 +68,12 @@ jobs:
|
||||||
with:
|
with:
|
||||||
command: nextest
|
command: nextest
|
||||||
args: run --all-features --profile ci
|
args: run --all-features --profile ci
|
||||||
|
- name: Process unit test report
|
||||||
|
uses: dorny/test-reporter@v1
|
||||||
|
if: success() || failure()
|
||||||
|
with:
|
||||||
|
name: test-results
|
||||||
|
path: target/nextest/ci/junit.xml
|
||||||
|
reporter: java-junit
|
||||||
- name: Run documentation tests
|
- name: Run documentation tests
|
||||||
run: cargo test --doc
|
run: cargo test --doc
|
||||||
|
|
Loading…
Add table
Reference in a new issue