We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0450d49 commit 6b29af2Copy full SHA for 6b29af2
.github/workflows/tests.yml
@@ -68,7 +68,13 @@ jobs:
68
run: vendor/bin/rector --dry-run
69
70
- name: Run tests
71
- run: ./vendor/bin/phpunit --coverage-clover=coverage.xml
+ run: ./vendor/bin/phpunit --coverage-clover=coverage.xml --log-junit=junit.xml
72
+
73
+ - name: Upload test results to Codecov
74
+ if: ${{ !cancelled() }}
75
+ uses: codecov/test-results-action@v1
76
+ with:
77
+ token: ${{ secrets.CODECOV_TOKEN }}
78
79
- name: Send code coverage report to Codecov.io
80
uses: codecov/codecov-action@v4
0 commit comments