From ef3f5388066224d00d0525c5f116c1f4ea512ec1 Mon Sep 17 00:00:00 2001 From: fredkingham Date: Fri, 26 Aug 2022 17:49:58 +0100 Subject: [PATCH] Adds the coverralls completion action The coverralls completion action tells coverralls when to send the information about the coverrage back to github --- .github/workflows/build.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a9a724ddc..84bd30565 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -54,6 +54,18 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}" COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} + coveralls: + name: Indicate completion to coveralls.io + needs: integration-test + runs-on: ubuntu-latest + container: python:3-slim + steps: + - name: Finished + run: | + pip3 install --upgrade coveralls + coveralls --service=github --finish + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # make sure the python side of things works on windows other-os-tests: name: Test ${{ matrix.os }} Python ${{ matrix.python-version }}