diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml deleted file mode 100644 index 5a7096f2..00000000 --- a/.github/workflows/codecov.yml +++ /dev/null @@ -1,27 +0,0 @@ ---- -name: codecov -on: - push: - branches: - - master -jobs: - codecov: - runs-on: ubuntu-22.04 - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-java@v4 - with: - distribution: 'temurin' - java-version: 11 - - uses: actions/cache@v3 - with: - path: ~/.m2/repository - key: maven-${{ hashFiles('**/pom.xml') }} - restore-keys: | - maven- - - run: mvn install -Pjacoco - - uses: codecov/codecov-action@v4.0.0-beta.3 - with: - token: ${{ secrets.CODECOV_TOKEN }} - file: ./target/site/jacoco/jacoco.xml - fail_ci_if_error: true