From 6ebaf2be2e8327f157b0470c65fea7bfeec2f384 Mon Sep 17 00:00:00 2001 From: matt-ramotar Date: Sun, 17 Nov 2024 20:15:32 -0500 Subject: [PATCH] Revert "Run codecov on PR and push" This reverts commit f9379b2c437323fd45d4345f077a0ee328687259. Signed-off-by: matt-ramotar --- .codecov.yml | 2 +- .github/workflows/check.yml | 12 +++++++++++- .github/workflows/codecov.yml | 12 ------------ 3 files changed, 12 insertions(+), 14 deletions(-) delete mode 100644 .github/workflows/codecov.yml diff --git a/.codecov.yml b/.codecov.yml index 817c42208..bd4987b68 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -1,5 +1,5 @@ coverage: - range: 70..80 + range: 50..80 round: down precision: 2 diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index a96c85e41..d1be31467 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -14,4 +14,14 @@ jobs: - name: Setup Gradle uses: gradle/actions/setup-gradle@v3 - name: Run check with Gradle Wrapper - run: ./gradlew check \ No newline at end of file + run: ./gradlew check + + coverage: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: codecov/codecov-action@v3 + with: + files: ./kover/coverage.xml + name: codecov-umbrella + verbose: true \ No newline at end of file diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml deleted file mode 100644 index f9c6c3f62..000000000 --- a/.github/workflows/codecov.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: Codecov -on: [ push, pull_request ] -jobs: - run: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - uses: codecov/codecov-action@v3 - with: - files: ./kover/coverage.xml - name: codecov-umbrella - verbose: true \ No newline at end of file