We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba0bc3f commit 27aaa80Copy full SHA for 27aaa80
.github/workflows/phpunit.yml
@@ -37,13 +37,17 @@ jobs:
37
38
- name: Install dependencies
39
run: |
40
- composer install --no-progress --prefer-dist --no-interaction --no-scripts
+ composer install --no-progress --prefer-dist --no-interaction
41
42
- - name: Run PHPUnit
43
- run: vendor/bin/phpunit --coverage-clover=coverage.xml
+ - name: Run PHPUnit with coverage
+ run: |
44
+ vendor/bin/phpunit --coverage-clover=coverage.xml
45
+ continue-on-error: true
46
47
- name: Upload coverage to Codecov
48
uses: codecov/codecov-action@v5
49
with:
50
token: ${{ secrets.CODECOV_TOKEN }}
51
slug: WordPress/secure-custom-fields
52
+ files: ./coverage.xml
53
+ verbose: true
0 commit comments