diff --git a/.github/workflows/test_coverage.yml b/.github/workflows/test_coverage.yml deleted file mode 100644 index 13ed1c406..000000000 --- a/.github/workflows/test_coverage.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Test coverage report -on: - workflow_dispatch: - push: - branches: - - release/* - -jobs: - unit-tests: - name: Unit Tests - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-java@v3 - with: - distribution: 'zulu' - java-version: 11 - - name: Run tests and create jacoco.exec - run: mvn -B test -ntp - - name: Create coverage report from jacoco execution data - run: mvn -B jacoco:report -ntp - - name: Upload jacoco coverage reports to Codecov - uses: codecov/codecov-action@v3 - with: - file: jacoco.xml - name: codecov - token: ${{ secrets.CODECOV_TOKEN }} - -