diff --git a/.github/workflows/ci-it.yml b/.github/workflows/ci-it.yml index 4cc1b488..5b6da122 100644 --- a/.github/workflows/ci-it.yml +++ b/.github/workflows/ci-it.yml @@ -63,14 +63,21 @@ jobs: VERBOSE=${{ github.debug }} fi export VERBOSE - ./run-ITs.sh - - name: Test Report + ./run-ITs.sh + - name: Unit Test Report uses: dorny/test-reporter@v1 if: ${{ success() || failure() }} with: name: Unit Tests path: '**/surefire-reports/*.xml' reporter: java-junit + - name: Integrtation Test Report + uses: dorny/test-reporter@v1 + if: ${{ success() || failure() }} + with: + name: Integration Tests + path: '**/failsafe-reports/*.xml' + reporter: java-junit - name: 'Upload: Error logs' if: ${{ failure() }} uses: actions/upload-artifact@v3