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 4722b82 commit 401020dCopy full SHA for 401020d
.github/workflows/main.yml
@@ -24,3 +24,14 @@ jobs:
24
run: python -m pylint --output-format=text src/sdynpy | tee lint.log || pylint-exit $?
25
- name: pytest
26
run: python -m pytest --verbose --cov=src/sdynpy --cov-report xml
27
+ - name: coveralls
28
+ run: |
29
+ python -m pip install coveralls
30
+ coveralls --service=github
31
+ env:
32
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33
+ - name: codecov
34
+ uses: codecov/codecov-action@v2
35
+ with:
36
+ name: codecov-umbrella
37
+ verbose: true
0 commit comments