We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f9a7f3 commit c70013aCopy full SHA for c70013a
.github/workflows/ci.yml
@@ -80,9 +80,15 @@ jobs:
80
run: "./tools/composer update --no-ansi --no-interaction --no-progress"
81
82
- name: "Run tests with PHPUnit"
83
- run: "vendor/bin/phpunit --coverage-clover=coverage.xml"
+ run: "vendor/bin/phpunit --log-junit junit.xml --coverage-clover=coverage.xml"
84
85
- - name: "Send code coverage report to Codecov.io"
86
- env:
87
- CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}"
88
- 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:
89
+ token: ${{ secrets.CODECOV_TOKEN }}
90
+
91
+ - name: Upload code coverage data to Codecov.io
92
+ uses: codecov/codecov-action@v4
93
94
0 commit comments