Skip to content

Commit

Permalink
add test reporter
Browse files Browse the repository at this point in the history
  • Loading branch information
shelajev committed Oct 29, 2024
1 parent ec7bb93 commit 0f27a09
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,10 @@ jobs:
token: ${{ secrets.TC_CLOUD_TOKEN }}
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Test Report
uses: dorny/[email protected]
if: success() || failure() # run this step even if previous step failed
with:
name: JUnit Tests # Name of the check run which will be created
path: '**/surefire-reports/TEST-*.xml' # Path to test results
reporter: junit # Format of test results

0 comments on commit 0f27a09

Please sign in to comment.