Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Migrated to test-r #18

Merged
merged 3 commits into from
Oct 7, 2024
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
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
- main
pull_request:

permissions:
checks: write

env:
CARGO_TERM_COLOR: always

Expand Down Expand Up @@ -40,7 +43,14 @@ jobs:
- name: Clippy
run: cargo clippy -- -Dwarnings
- name: Tests
run: cargo test --all-features
run: cargo test --tests --all-features -- --format junit --logfile target/report.xml
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure() # always run even if the previous step fails
with:
report_paths: '**/target/report-*.xml'
detailed_summary: true
include_passed: true

publish:
needs: [ build ]
Expand Down
Loading
Loading