Skip to content

Commit

Permalink
Publish Test Report
Browse files Browse the repository at this point in the history
  • Loading branch information
SimY4 committed Nov 2, 2023
1 parent 61bbf54 commit 2e57822
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,19 @@ jobs:
cache: sbt
- name: Build with sbt
run: sbt ++${{ matrix.scala }} build
- name: Code Coverage
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Create test summary
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: always()
with:
report_paths: '**/target/test-reports/*.xml'
require_tests: true
check_name: '${{ matrix.java }}-${{ matrix.scala }}-${{ matrix.project }}'
- name: Create Test Summary
uses: test-summary/action@v2
with:
paths: '**/target/test-reports/*.xml'
if: always()
- name: Code Coverage
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 2e57822

Please sign in to comment.