Skip to content

Commit eed9cc4

Browse files
committed
feat: add step to publish test results in build workflow
1 parent 197194e commit eed9cc4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,12 @@ jobs:
6565
mkdir test-results
6666
bats . --verbose-run --print-output-on-failure --report-formatter junit --output test-results
6767
68+
- name: Publish Test Results
69+
uses: EnricoMi/publish-unit-test-result-action@v2
70+
with:
71+
files: |
72+
test-results/*.xml
73+
6874
- name: Restore dependencies
6975
run: dotnet restore
7076

0 commit comments

Comments
 (0)