Skip to content

Commit

Permalink
feat: include test report stage
Browse files Browse the repository at this point in the history
  • Loading branch information
ramnarayan-code committed Sep 15, 2023
1 parent d93a0c6 commit 1f8d140
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/actions-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,13 @@ jobs:
distribution: 'adopt'

- name: Test
run: mvn --batch-mode -Dmaven.test.failure.ignore=true test
run: mvn --batch-mode -Dmaven.test.failure.ignore=true test

- name: Report
uses: dorny/test-reporter@v1
if: always()
with:
name: Maven Tests
path: target/surefire-reports/*.xml
reporter: java-junit
fail-on-error: true

0 comments on commit 1f8d140

Please sign in to comment.