From c7b14984298a5ca11db7c98de2f45abdeefd6bd6 Mon Sep 17 00:00:00 2001 From: Sachin-Mamoru Date: Thu, 15 Aug 2024 21:10:52 +0530 Subject: [PATCH] removed codecov integration --- .github/workflows/pr-builder.yml | 5 ----- codecov.yml | 15 --------------- 2 files changed, 20 deletions(-) delete mode 100644 codecov.yml diff --git a/.github/workflows/pr-builder.yml b/.github/workflows/pr-builder.yml index 1549310..513f25c 100644 --- a/.github/workflows/pr-builder.yml +++ b/.github/workflows/pr-builder.yml @@ -46,10 +46,5 @@ jobs: ${{ runner.os }}- - name: Build with Maven run: mvn clean install -U -B - - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v4.0.1 - with: - token: ${{ secrets.CODECOV_TOKEN }} - fail_ci_if_error: true # Optional: Specify if the CI build should fail when Codecov fails. - name: Delete SNAPSHOT artifacts run: find ~/.m2/repository/ -name "*-SNAPSHOT" -type d -print -prune -exec rm -r {} + diff --git a/codecov.yml b/codecov.yml deleted file mode 100644 index eed03af..0000000 --- a/codecov.yml +++ /dev/null @@ -1,15 +0,0 @@ -codecov: - require_ci_to_pass: yes - notify: - wait_for_ci: yes -coverage: - status: - project: # checks the effect for the overall code coverage rate of the repository. - default: - enabled: yes - threshold: null - target: auto - patch: # This status indicates the extent of code coverage achieved by the pull request. - default: - target: 80% - threshold: 50% # With a target of 80% and a threshold of 50%, the acceptable coverage range is 50% to 80%.