Skip to content

Commit 0e53722

Browse files
committed
GitHub Actions: try to send coverage to coveralls.io
1 parent a284e2d commit 0e53722

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/tests.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,20 @@ jobs:
2424
run: tox
2525
env:
2626
TOXENV: ${{ matrix.toxenv }}
27+
- if: matrix.python-version == "3.8"
28+
name: Coveralls Parallel
29+
uses: coverallsapp/github-action@master
30+
with:
31+
github-token: ${{ secrets.github_token }}
32+
flag-name: run-${{ matrix.python-version }}
33+
parallel: true
34+
35+
coverage:
36+
needs: build
37+
runs-on: ubuntu-latest
38+
steps:
39+
- name: Coveralls Finished
40+
uses: coverallsapp/github-action@master
41+
with:
42+
github-token: ${{ secrets.github_token }}
43+
parallel-finished: true

0 commit comments

Comments
 (0)