From 68b80da84342053cd5798e4f99900cbb26292da6 Mon Sep 17 00:00:00 2001 From: Emil Edholm Date: Wed, 20 Sep 2023 13:17:08 +0200 Subject: [PATCH] ci(codecov): remove codecov step Codecov has migrated to requiring an app to be installed into the org. While codecov still seems to work most of the time, it doesn't seem to work well for external contributors and also seem to have rate limiting issues. AP-285 --- .github/codecov.yml | 13 ------------- .github/workflows/review.yml | 6 ------ 2 files changed, 19 deletions(-) delete mode 100644 .github/codecov.yml diff --git a/.github/codecov.yml b/.github/codecov.yml deleted file mode 100644 index a975e82..0000000 --- a/.github/codecov.yml +++ /dev/null @@ -1,13 +0,0 @@ -codecov: - require_ci_to_pass: yes - -ignore: - - internal/examples/proto/gen - -coverage: - range: "70...100" - -comment: - layout: reach,diff,flags,files - behavior: default - require_changes: no diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml index 63117bb..f30de6f 100644 --- a/.github/workflows/review.yml +++ b/.github/workflows/review.yml @@ -12,9 +12,3 @@ jobs: - name: Make run: make - - - name: Report Code Coverage - uses: codecov/codecov-action@v3.1.4 - with: - file: .sage/build/go/coverage/go-test.txt - fail_ci_if_error: true