From 31bc17fd5f545de84bd00eeebeb54e8099f3c438 Mon Sep 17 00:00:00 2001 From: Michael Keppler Date: Sat, 23 Sep 2023 13:21:58 +0200 Subject: [PATCH] infra: Publish test results --- .github/workflows/maven.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 8823ee732..fc5aec846 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -33,3 +33,11 @@ jobs: - name: Difference Check run: ./.ci/validation.sh git-diff + + - name: Publish Test Results + uses: EnricoMi/publish-unit-test-result-action@v2 + # we only want to attach test results one time, not for every matrix combination + if: startsWith(matrix.platform, 'ubuntu') && (matrix.jdk == 17) + with: + files: '**/target/surefire-reports/*.xml' +