diff --git a/.github/workflows/cmake-ctest.yml b/.github/workflows/cmake-ctest.yml index 5576205..75160c3 100644 --- a/.github/workflows/cmake-ctest.yml +++ b/.github/workflows/cmake-ctest.yml @@ -46,14 +46,8 @@ jobs: run: ctest -C ${{env.BUILD_TYPE}} --output-junit test-report.xml - name: Publish test report - if: ${{ !cancelled() }} - uses: ./.github/actions/publish-test-report + if: success() || failure() with: - report-name: oc8 - report-path: build/test-report.xml - - - name: "Upload Unit Test Reports" - if: ${{ !cancelled() }} - uses: ./.github/actions/upload-test-report - with: - report-name: ${{ env.REPORT_NAME }} \ No newline at end of file + name: CTest Tests + path: ./build/test-report.xml + reporter: jest-junit \ No newline at end of file