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

Commit a6465e5

Browse files
authored
Merge branch 'main' into vigoo/type-constructors
2 parents d295a81 + 0184393 commit a6465e5

File tree

9 files changed

+561
-222
lines changed

9 files changed

+561
-222
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ on:
88
- main
99
pull_request:
1010

11+
permissions:
12+
checks: write
13+
1114
env:
1215
CARGO_TERM_COLOR: always
1316

@@ -40,7 +43,14 @@ jobs:
4043
- name: Clippy
4144
run: cargo clippy -- -Dwarnings
4245
- name: Tests
43-
run: cargo test --all-features
46+
run: cargo test --tests --all-features -- --format junit --logfile target/report.xml
47+
- name: Publish Test Report
48+
uses: mikepenz/action-junit-report@v4
49+
if: success() || failure() # always run even if the previous step fails
50+
with:
51+
report_paths: '**/target/report-*.xml'
52+
detailed_summary: true
53+
include_passed: true
4454

4555
publish:
4656
needs: [ build ]

0 commit comments

Comments
 (0)