Skip to content

Commit f686622

Browse files
authored
ci(github-actions): Ignore Coveralls errors (#60)
This will add continue-on-error to the Coveralls report upload step in the job "CI / General checks...". In case of an error with this step (e.g. the Coveralls service is temporarily down) the job continues as normal and does NOT fail.
1 parent eadd71b commit f686622

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,4 @@ jobs:
4141

4242
- name: Send report to Coveralls
4343
uses: coverallsapp/github-action@v2
44-
with:
45-
# Pinned to v0.6.15 as workaround for 500 server errors
46-
# See: https://github.com/coverallsapp/coverage-reporter/issues/180
47-
coverage-reporter-version: v0.6.15
44+
continue-on-error: true # Do not fail the job if coverage reporting fails (e.g. service is down)

0 commit comments

Comments
 (0)