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'