From edc5846b07924655d00ffd6713990ee17e3bff24 Mon Sep 17 00:00:00 2001 From: gokhansarapevi Date: Tue, 7 Jan 2025 12:51:43 +0300 Subject: [PATCH] change: replace codecov --- .github/workflows/ci.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17d1e49..63445ba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,13 +70,12 @@ jobs: run: | python -m pip install --upgrade pip pip install -e .[dev] + pip install coveralls - name: "๐Ÿงช Run tests" - run: pytest --cov=smolswarms --cov-report=xml + run: pytest --cov=smolswarms - name: "๐Ÿ“Š Upload coverage" - uses: codecov/codecov-action@v3 - with: - token: ${{ secrets.CODECOV_TOKEN }} - file: ./coverage.xml - fail_ci_if_error: true + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: coveralls --service=github