Skip to content

Commit 401020d

Browse files
authored
Update main.yml
1 parent 4722b82 commit 401020d

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/main.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,14 @@ jobs:
2424
run: python -m pylint --output-format=text src/sdynpy | tee lint.log || pylint-exit $?
2525
- name: pytest
2626
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

Comments
 (0)