We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f862f5b commit 76d9033Copy full SHA for 76d9033
1 file changed
.github/workflows/main.yml
@@ -58,10 +58,17 @@ jobs:
58
- name: Run Tests
59
run: |
60
mkdir -p build/logs
61
- vendor/bin/phpunit --configuration ${{ matrix.phpunit_config }} --coverage-clover build/logs/clover.xml
+ vendor/bin/phpunit --configuration ${{ matrix.phpunit_config }} --log-junit junit.xml --coverage-clover build/logs/clover.xml
62
63
- name: Upload coverage to Codecov
64
- uses: codecov/codecov-action@v3
+ uses: codecov/codecov-action@v5
65
+ with:
66
+ token: ${{ secrets.CODECOV_TOKEN }}
67
+
68
+ - name: Upload test results to Codecov
69
+ uses: codecov/test-results-action@v1
70
71
72
73
- name: Upload Coverage to Scrutinizer CI (PHP < 8.0)
74
if: "${{ matrix.php < '8.0' }}"
0 commit comments