File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change 80
80
run : " ./tools/composer update --no-ansi --no-interaction --no-progress"
81
81
82
82
- name : " Run tests with PHPUnit"
83
- run : " vendor/bin/phpunit --coverage-clover=coverage.xml"
83
+ run : " vendor/bin/phpunit --log-junit junit.xml -- coverage-clover=coverage.xml"
84
84
85
- - name : " Send code coverage report to Codecov.io"
86
- env :
87
- CODECOV_TOKEN : " ${{ secrets.CODECOV_TOKEN }}"
88
- run : " bash <(curl -s https://codecov.io/bash) || true"
85
+ - name : Upload test results to Codecov.io
86
+ if : ${{ !cancelled() }}
87
+ uses : codecov/test-results-action@v1
88
+ with :
89
+ token : ${{ secrets.CODECOV_TOKEN }}
90
+
91
+ - name : Upload code coverage data to Codecov.io
92
+ uses : codecov/codecov-action@v4
93
+ with :
94
+ token : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments