From baddd1d9d60352a965ae6588a8426a264f9b64b1 Mon Sep 17 00:00:00 2001 From: MarcGiffing Date: Wed, 28 Feb 2024 15:24:41 +0100 Subject: [PATCH] github actions test report --- .github/workflows/maven.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 2263ed3b..293ff920 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -4,9 +4,7 @@ on: [push] jobs: build: - runs-on: ubuntu-latest - steps: - uses: actions/checkout@v1 - name: Set up JDK 17 @@ -15,3 +13,8 @@ jobs: java-version: 17 - name: Build with Maven run: mvn -B package --file pom.xml + - 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/TEST-*.xml'