Add attempt at auto rerun functionality (#1105)

Attempting to refactor clang-tidy as an action and reuse it from two workflows.
This commit is contained in:
Alex Kremer
2024-01-15 19:48:59 +00:00
committed by GitHub
parent 13d2d4e2ca
commit eeaccbabd9
3 changed files with 29 additions and 13 deletions

View File

@@ -21,9 +21,13 @@ runs:
retention-days: 30
- name: Upload coverage report
uses: codecov/codecov-action@v3
uses: wandalen/wretry.action@v1.3.0
with:
files: build/coverage_report.xml
fail_ci_if_error: true
verbose: true
token: ${{ env.CODECOV_TOKEN }}
action: codecov/codecov-action@v3
with: |
files: build/coverage_report.xml
fail_ci_if_error: true
verbose: true
token: ${{ env.CODECOV_TOKEN }}
attempt_limit: 5
attempt_delay: 10000