File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 6767 BS_ACCESS_KEY : ${{ secrets.BS_ACCESS_KEY }}
6868 if : " ${{ matrix.with_coverage == true }}"
6969 run : |
70- vendor/bin/phpunit -v --coverage-clover=coverage.clover
70+ vendor/bin/phpunit -v --coverage-clover=coverage.clover --log-junit junit.xml
7171
7272 - name : Run tests without Coverage
7373 env :
@@ -79,12 +79,18 @@ jobs:
7979 run : |
8080 vendor/bin/phpunit -v
8181
82- - name : Upload Coverage to CodeCov
83- if : " ${{ matrix.with_coverage == true }} "
82+ - name : Upload coverage to Codecov
83+ if : ${{ matrix.with_coverage == true && !cancelled() }}
8484 uses : codecov/codecov-action@v4
8585 with :
8686 token : ${{ secrets.CODECOV_TOKEN }}
8787
88+ - name : Upload test results to Codecov
89+ if : ${{ matrix.with_coverage == true && !cancelled() }}
90+ uses : codecov/test-results-action@v1
91+ with :
92+ token : ${{ secrets.CODECOV_TOKEN }}
93+
8894 - name : Upload Coverage to Scrutinizer CI (PHP < 8.0)
8995 if : " ${{ matrix.php < '8.0' && matrix.with_coverage == true }}"
9096 run : |
You can’t perform that action at this time.
0 commit comments