We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de35ed8 commit c6db4d1Copy full SHA for c6db4d1
1 file changed
.github/workflows/test.yml
@@ -71,7 +71,17 @@ jobs:
71
- name: PHPUnit
72
run: vendor/bin/phpunit
73
--coverage-clover coverage.xml
74
+ --log-junit junit.xml
75
- - name: Submit code coverage
76
- if: ${{ always() }}
77
- uses: codecov/codecov-action@v5
+ - name: Upload coverage reports to Codecov
+ if: ${{ !cancelled() }}
78
+ uses: codecov/codecov-action@v6
79
+ with:
80
+ token: ${{ secrets.CODECOV_TOKEN }}
81
+
82
+ - name: Upload test reports to Codecov
83
84
85
86
87
+ report_type: test_results
0 commit comments