We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
coveralls
1 parent 2762ad8 commit 4920edbCopy full SHA for 4920edb
.github/workflows/tests.yml
@@ -31,4 +31,22 @@ jobs:
31
pip install -r requirements.txt
32
pip install -r requirements.dev.txt
33
- name: Test with tox
34
- run: tox
+ run: tox
35
+ - name: Run coveralls
36
+ run: coveralls --service=github
37
+ env:
38
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39
+ COVERALLS_FLAG_NAME: ${{ matrix.test-name }}
40
+ COVERALLS_PARALLEL: true
41
+
42
43
+ finish:
44
+ name: Finish Coveralls
45
+ needs: test
46
+ runs-on: ubuntu-20.04
47
+ steps:
48
+ - name: Finish Coveralls
49
+ uses: coverallsapp/github-action@v1
50
+ with:
51
+ github-token: ${{ secrets.github_token }}
52
+ parallel-finished: true
0 commit comments