From df9fedbd669171557cf72f23b370d514dd5fa55c Mon Sep 17 00:00:00 2001 From: Corneil du Plessis Date: Wed, 20 Nov 2024 12:42:32 +0200 Subject: [PATCH] Update ci-it.yml to upload surefire and failsafe reports --- .github/workflows/ci-it.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) 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