We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d19c31b commit ca91be3Copy full SHA for ca91be3
1 file changed
.github/workflows/python-package.yml
@@ -32,13 +32,12 @@ jobs:
32
- name: Test
33
run: |
34
coverage run setup.py test
35
- - name: Coveralls Parallel
36
- uses: AndreMiras/coveralls-python-action@develop
37
- with:
38
- github-token: ${{ secrets.GITHUB_TOKEN }}
39
- flag-name: run-${{ matrix.python-version }}
40
- parallel: true
41
- base-path: /github/workspace
+ - name: Publish coverage
+ run: coveralls --service=github
+ env:
+ COVERALLS_PARALLEL: true
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ FLAG_NAME: run-${{ matrix.python-version }}
42
43
finish:
44
needs: [test]
@@ -49,4 +48,3 @@ jobs:
49
48
with:
50
github-token: ${{ secrets.GITHUB_TOKEN }}
51
parallel-finished: true
52
0 commit comments