Merge pull request #27 from alexpolo1/stable

ci: don't fail the build on coverage artifact storage quota
This commit is contained in:
Alex
2026-08-27 19:40:49 +02:00
committed by GitHub

View File

@@ -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