Skip to content

Commit

Permalink
github actions test report
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcGiffing authored Feb 28, 2024
1 parent efae5f4 commit baddd1d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Set up JDK 17
Expand All @@ -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'

0 comments on commit baddd1d

Please sign in to comment.