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.
1 parent cde545a commit a63eabaCopy full SHA for a63eaba
.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