We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c8279b commit d00442eCopy full SHA for d00442e
.github/workflows/ci.yml
@@ -79,9 +79,15 @@ jobs:
79
run: "./tools/composer update --no-ansi --no-interaction --no-progress"
80
81
- name: "Run tests with PHPUnit"
82
- run: "vendor/bin/phpunit --coverage-clover=coverage.xml"
+ run: "vendor/bin/phpunit --log-junit junit.xml --coverage-clover=coverage.xml"
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"
+ - name: Upload test results to Codecov.io
+ if: ${{ !cancelled() }}
+ uses: codecov/test-results-action@v1
+ with:
88
+ token: ${{ secrets.CODECOV_TOKEN }}
89
+
90
+ - name: Upload code coverage data to Codecov.io
91
+ uses: codecov/codecov-action@v4
92
93
0 commit comments