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 a3c206a commit c8d2d93Copy full SHA for c8d2d93
.github/workflows/build.yml
@@ -25,8 +25,9 @@ jobs:
25
black --line-length 80 --check --diff tensorflow_riemopt
26
- name: Test with pytest
27
run: |
28
- pytest -v tensorflow_riemopt --cov tensorflow_manopt
+ pytest -v tensorflow_riemopt --cov tensorflow_riemopt
29
- name: Publish to coveralls.io
30
- uses: coverallsapp/[email protected]
31
- with:
32
- github-token: ${{ github.token }}
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: |
33
+ coveralls --service=github
0 commit comments