diff --git a/.github/workflows/maven-test.yml b/.github/workflows/maven-test.yml index 708dd1a..9d5f2ca 100644 --- a/.github/workflows/maven-test.yml +++ b/.github/workflows/maven-test.yml @@ -27,3 +27,13 @@ jobs: redis-version: latest - name: Build with Maven run: mvn -B test --file pom.xml + + - name: Upload Coverage Report to Codecov + uses: codecov/codecov-action@v1 + with: + token: ${{ secrets.CODECOV_TOKEN }} + file: .*?/target/jacoco.exec$ + flags: Unit tests + name: Jacoco-Converage-Report + fail_ci_if_error: true + verbose: true