Skip to content

Commit 27aaa80

Browse files
committed
Enable verbose mode to debug
1 parent ba0bc3f commit 27aaa80

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/phpunit.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,17 @@ jobs:
3737

3838
- name: Install dependencies
3939
run: |
40-
composer install --no-progress --prefer-dist --no-interaction --no-scripts
40+
composer install --no-progress --prefer-dist --no-interaction
4141
42-
- name: Run PHPUnit
43-
run: vendor/bin/phpunit --coverage-clover=coverage.xml
42+
- name: Run PHPUnit with coverage
43+
run: |
44+
vendor/bin/phpunit --coverage-clover=coverage.xml
45+
continue-on-error: true
4446

4547
- name: Upload coverage to Codecov
4648
uses: codecov/codecov-action@v5
4749
with:
4850
token: ${{ secrets.CODECOV_TOKEN }}
4951
slug: WordPress/secure-custom-fields
52+
files: ./coverage.xml
53+
verbose: true

0 commit comments

Comments
 (0)