Skip to content

Commit

Permalink
ci: use coveralls github-action
Browse files Browse the repository at this point in the history
  • Loading branch information
RDWimmers committed Nov 2, 2023
1 parent c554e74 commit d4874dd
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,20 @@ jobs:
run: coverage run -m pytest

- name: Post coverage results
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: coveralls --service=github
uses: coverallsapp/github-action@v2
with:
flag-name: run-${{ matrix.python-version }}
parallel: true

finish:
needs: test
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v2
with:
parallel-finished: true

lint:
name: Formatting check
Expand Down

0 comments on commit d4874dd

Please sign in to comment.