Skip to content

Commit

Permalink
Adds the coverralls completion action
Browse files Browse the repository at this point in the history
The coverralls completion action tells coverralls when to send the
information about the coverrage back to github
  • Loading branch information
fredkingham committed Aug 26, 2022
1 parent 2ff1e1f commit ef3f538
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Expand Up @@ -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 }}
Expand Down

0 comments on commit ef3f538

Please sign in to comment.