We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d1f77a commit 7412fb6Copy full SHA for 7412fb6
.github/workflows/phpunits.yaml
@@ -156,9 +156,13 @@ jobs:
156
157
- name: Send coverage
158
id: codeclimate-send
159
- run: |
160
- ./cc-test-reporter after-build --coverage-input-type clover --exit-code 0
161
- bash <(curl -s https://codecov.io/bash)
+ uses: nick-fields/retry@v2
+ with:
+ timeout_seconds: 15
162
+ max_attempts: 3
163
+ command: >-
164
+ ./cc-test-reporter after-build --coverage-input-type clover --exit-code 0
165
+ bash <(curl -s https://codecov.io/bash)
166
env:
167
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
168
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
0 commit comments