From f29932ae2a68ef95c3907817601946a2206430c6 Mon Sep 17 00:00:00 2001 From: Lars Eckart Date: Mon, 4 Nov 2024 19:27:01 +0200 Subject: [PATCH] . e added test report to github action Co-Authored-By: Llewellyn Falco Co-Authored-By: asegrt <46486845+asegrt@users.noreply.github.com> --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6e5f4d14..61b2fa06 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,6 +39,11 @@ jobs: ./set_formatting_off.sh ./build_and_test.sh shell: bash + - name: Publish Test Report + uses: mikepenz/action-junit-report@v4 + if: success() || failure() # always run even if the previous step fails + with: + report_paths: '**/target/surefire-reports/*.xml' auto-merge: needs: build runs-on: ubuntu-latest