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