diff options
| author | Yuriy Andamasov <yuriy@vyos.io> | 2026-08-17 10:52:07 +0300 |
|---|---|---|
| committer | Yuriy Andamasov <yuriy@vyos.io> | 2026-08-17 10:52:07 +0300 |
| commit | 985ab80d647e56925f84f5631434656b1f289d9e (patch) | |
| tree | 260b90433e988963ca85b666b14830ff21f62feb /.github/workflows/codecoverage.yml | |
| parent | 7ecac376df86cd9e13dc92ccccfe5a29ce86cfe8 (diff) | |
| download | vyos.vyos-985ab80d647e56925f84f5631434656b1f289d9e.tar.gz vyos.vyos-985ab80d647e56925f84f5631434656b1f289d9e.zip | |
T9220: ci: continue-on-error on test-results upload (informational posture)
A step timeout would fail the job despite fail_ci_if_error: false;
continue-on-error keeps the upload strictly informational.
🤖 Generated by [robots](https://vyos.io)
Diffstat (limited to '.github/workflows/codecoverage.yml')
| -rw-r--r-- | .github/workflows/codecoverage.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/codecoverage.yml b/.github/workflows/codecoverage.yml index ce2f2be2..99047151 100644 --- a/.github/workflows/codecoverage.yml +++ b/.github/workflows/codecoverage.yml @@ -74,6 +74,7 @@ jobs: if: ${{ !cancelled() && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false) && github.actor != 'dependabot[bot]' }} uses: codecov/codecov-action@0fb7174895f61a3b6b78fc075e0cd60383518dac # v5.5.5 timeout-minutes: 5 + continue-on-error: true with: report_type: test_results files: ${{ steps.identify.outputs.collection_path }}/test-results/junit-codecoverage-codecoverage-pytest-s0.xml |
