From f43b81fcfeb2eec72f3f08c0f7b69ae68031d8d0 Mon Sep 17 00:00:00 2001 From: Alexander Weber <12560547+lllAlexanderlll@users.noreply.github.com> Date: Mon, 19 Feb 2024 13:08:27 +0000 Subject: [PATCH] chore: fix coveralls github action --- .github/workflows/tests.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 42283cbc..b0a0bbe5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,10 +27,7 @@ jobs: - name: Run tests run: | pytest --cov - - name: Upload coverage data to coveralls.io - run: | - python -m pip install coveralls - coveralls --service=github - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Coveralls GitHub Action + uses: coverallsapp/github-action@v2.2.3 +