diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index ecb89a79..737e0073 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -34,11 +34,18 @@ jobs: # if: always() # always run even if the previous step fails # with: # report_paths: '**/target/surefire-reports/TEST-*.xml' - - name: Publish Test Results - uses: EnricoMi/publish-unit-test-result-action/composite@v1 - if: always() # always run even if the previous step fails + #- name: Publish Test Results + # uses: EnricoMi/publish-unit-test-result-action/composite@v1 + # if: always() # always run even if the previous step fails + # with: + # files: "**/target/surefire-reports/TEST-*.xml" + - name: Test Report 🔍 + uses: dorny/test-reporter@v1 + if: success() || failure() # run this step even if previous step failed with: - files: "**/target/surefire-reports/TEST-*.xml" + name: Test Results + path: ${{ github.workspace }}/**/target/surefire-reports/TEST-*.xml + reporter: java-junit - name: Archive logs 📦 uses: actions/upload-artifact@v3 if: always() # always run even if the previous step fails