Merge pull request #27 from alexpolo1/stable
ci: don't fail the build on coverage artifact storage quota
This commit is contained in:
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
@@ -201,6 +201,12 @@ jobs:
|
||||
- name: Upload coverage
|
||||
uses: actions/upload-artifact@v4
|
||||
if: always()
|
||||
# Non-blocking: this is a convenience artifact, not a gate. When the account's
|
||||
# artifact storage quota is full the upload fails with
|
||||
# "Failed to CreateArtifact: Artifact storage quota has been hit" and marked the
|
||||
# whole run red even though every test step passed. A quota problem is not a
|
||||
# broken build.
|
||||
continue-on-error: true
|
||||
with:
|
||||
name: coverage-report
|
||||
path: coverage.xml
|
||||
|
||||
Reference in New Issue
Block a user