File tree 1 file changed +11
-2
lines changed
1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -58,10 +58,19 @@ jobs:
58
58
- name : Run Tests
59
59
run : |
60
60
mkdir -p build/logs
61
- vendor/bin/phpunit --configuration ${{ matrix.phpunit_config }} --coverage-clover build/logs/clover.xml
61
+ vendor/bin/phpunit --configuration ${{ matrix.phpunit_config }} --log-junit junit.xml -- coverage-clover build/logs/clover.xml
62
62
63
63
- name : Upload coverage to Codecov
64
- uses : codecov/codecov-action@v3
64
+ uses : codecov/codecov-action@v5
65
+ if : ${{ !cancelled() }}
66
+ with :
67
+ token : ${{ secrets.CODECOV_TOKEN }}
68
+
69
+ - name : Upload test results to Codecov
70
+ uses : codecov/test-results-action@v1
71
+ if : ${{ !cancelled() }}
72
+ with :
73
+ token : ${{ secrets.CODECOV_TOKEN }}
65
74
66
75
- name : Upload Coverage to Scrutinizer CI (PHP < 8.0)
67
76
if : " ${{ matrix.php < '8.0' }}"
You can’t perform that action at this time.
0 commit comments