From 5721c11121c40ace3bfa7a0ad90df0221a2be110 Mon Sep 17 00:00:00 2001 From: Leonardo Cavallucci Date: Thu, 9 Nov 2023 15:49:25 +0100 Subject: [PATCH] Switch to Coveralls Github action --- .github/workflows/test.yml | 15 ++++++++++++++- changes/47.feature | 1 + 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 changes/47.feature diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dcaebae..8e26f90 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@v3 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/47.feature b/changes/47.feature new file mode 100644 index 0000000..ac23805 --- /dev/null +++ b/changes/47.feature @@ -0,0 +1 @@ +Switch to Coveralls Github action