From d10e6deb16d709960ec6f469f8c2e2fbaf4a801e Mon Sep 17 00:00:00 2001 From: Leonardo Cavallucci Date: Thu, 9 Nov 2023 16:13:51 +0100 Subject: [PATCH] Switch to Coveralls Github action (#57) * Switch to Coveralls Github action * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- .github/workflows/test.yml | 15 ++++++++++++++- changes/56.feature | 1 + 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 changes/56.feature diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3c146da..2564b30 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,7 +43,11 @@ jobs: run: | tox -e$TOX_ENV .tox/$TOX_ENV/bin/coverage xml - .tox/$TOX_ENV/bin/coveralls + - name: Coveralls Parallel + uses: coverallsapp/github-action@v2 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + parallel: true - uses: codecov/codecov-action@v1 with: token: ${{ secrets.CODECOV_TOKEN }} @@ -55,3 +59,12 @@ jobs: image: redis ports: - 6379:6379 + finish: + needs: test + if: ${{ always() }} + runs-on: ubuntu-latest + steps: + - name: Coveralls Finished + uses: coverallsapp/github-action@v2 + with: + parallel-finished: true diff --git a/changes/56.feature b/changes/56.feature new file mode 100644 index 0000000..ac23805 --- /dev/null +++ b/changes/56.feature @@ -0,0 +1 @@ +Switch to Coveralls Github action