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.
2 parents e879871 + 3dcef38 commit 27e1549Copy full SHA for 27e1549
.github/workflows/phpunits.yaml
@@ -160,9 +160,12 @@ jobs:
160
timeout_seconds: 15
161
max_attempts: 3
162
command: >-
163
- ./cc-test-reporter after-build --coverage-input-type clover --exit-code 0;
164
- bash <(curl -s https://codecov.io/bash)
+ ./cc-test-reporter after-build --coverage-input-type clover --exit-code 0
165
env:
166
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
167
- CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
+ if: ${{ steps.codeclimate-check.outputs.execute == 'true' }}
+
168
+ - uses: codecov/codecov-action@v4
169
+ with:
170
+ token: ${{ secrets.CODECOV_TOKEN }}
171
if: ${{ steps.codeclimate-check.outputs.execute == 'true' }}
0 commit comments