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 d183e37 commit 2c5462cCopy full SHA for 2c5462c
.github/workflows/coverage.yml
@@ -56,12 +56,14 @@ jobs:
56
run: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml ${{ matrix.php >= 8 && '--no-interaction' || '' }}
57
58
- name: Coverage
59
- uses: codecov/codecov-action@v3
+ uses: codecov/codecov-action@v5
60
+ with:
61
+ token: ${{ secrets.CODECOV_TOKEN }}
62
63
- name: Code Climate Test Reporter
64
if: ${{ env.CC_TEST_REPORTER_ID != '' }}
- run: |
- cp coverage.xml clover.xml
65
- bash <(curl -s https://codecov.io/bash)
+ uses: paambaati/[email protected]
66
env:
67
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
68
69
+ coverageLocations: ${{github.workspace}}/coverage.xml:clover
0 commit comments