Skip to content

Commit d5efda0

Browse files
committed
Change coveralls upload step to not fail the action
1 parent a000ee6 commit d5efda0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/tests.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
3232
- name: Upload coverage to coveralls
3333
id: coveralls
34-
env:
35-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36-
run: |
37-
pip install --upgrade coveralls
38-
coveralls --service=github
34+
uses: coverallsapp/github-action@v2
35+
with:
36+
github-token: ${{ secrets.GITHUB_TOKEN }}
37+
file: coverage.xml
38+
fail-on-error: false

0 commit comments

Comments
 (0)