From 519c52012b3671d9c9edf3d352dc4b1f1cbe2a69 Mon Sep 17 00:00:00 2001 From: Ulli Hafner Date: Fri, 1 Dec 2023 15:04:32 +0100 Subject: [PATCH] Remove duplicate upload. --- .github/workflows/coverage.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/coverage.yml diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml deleted file mode 100644 index 16aca89c..00000000 --- a/.github/workflows/coverage.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: 'Generate coverage report' - -on: - push: - branches: - - master - - main - pull_request: - -jobs: - coverage: - - runs-on: ubuntu-latest - name: Coverage on Ubuntu - - steps: - - uses: actions/checkout@v4 - - name: Set up JDK 11 - uses: actions/setup-java@v3 - with: - distribution: 'temurin' - java-version: '11' - check-latest: true - - name: Generate coverage with JaCoCo - run: mvn -V --color always -ntp clean verify --file pom.xml '-Dgpg.skip' - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 - with: - files: 'target/site/jacoco/jacoco.xml' - token: ${{secrets.CODECOV_TOKEN}}