We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4f339f commit 0263916Copy full SHA for 0263916
.github/workflows/pythonpackage.yml
@@ -31,11 +31,9 @@ jobs:
31
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
32
33
- name: Test with coverage and coveralls
34
+ env:
35
+ COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
36
run: |
37
pip install coveralls pytest
38
coverage run --source Hologram -m pytest
-
- - name: Coveralls
39
- uses: coverallsapp/github-action@master
40
- with:
41
- github-token: ${{ secrets.GITHUB_TOKEN }}
+ coveralls
0 commit comments