Skip to content

Commit

Permalink
feat: Attach test results to github release (WPB-10609)
Browse files Browse the repository at this point in the history
  • Loading branch information
mythsunwind committed Aug 14, 2024
1 parent b278a84 commit d45fcc1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 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]
path = "junit.xml"
store-success-output = true
store-failure-output = true
4 changes: 4 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,7 @@ jobs:
run: cargo nextest run --verbose --release
- name: Run tests (WASM)
run: wasm-pack test --release --headless --chrome
- name: Upload test results
uses: softprops/action-gh-release@v1
with:
files: target/nextest/default/junit.xml

0 comments on commit d45fcc1

Please sign in to comment.