From 3c3130357c5d3a88de44ae781c66f0aa27c5e93d Mon Sep 17 00:00:00 2001 From: Nikolay Lysenko Date: Sat, 4 Jan 2025 12:18:40 +0300 Subject: [PATCH] chore: Replace Codecov with CodeClimate coverage --- .github/workflows/main.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8fcbb09..7907a65 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,7 +27,6 @@ jobs: pip install -r requirements/test.txt - name: Test with Pytest run: pytest --cov=servifier --cov-config .coveragerc --cov-report=xml - - name: Create and upload Codecov report - uses: codecov/codecov-action@v2 - with: - fail_ci_if_error: true + - name: Upload coverage report to Code Climate + uses: paambaati/codeclimate-action@v9.0.0 +