diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index f3919b39..9b0fb44d 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -27,3 +27,8 @@ jobs: run: swift test -v | bundle exec xcpretty - name: Run all tests run: make test_all + - name: Publish Test Report + uses: mikepenz/action-junit-report@v4 + if: success() || failure() # always run even if the previous step fails + with: + report_paths: '**/test-results-*/report.xml'