Skip to content
Snippets Groups Projects
Unverified Commit c70013aa authored by Sebastian Bergmann's avatar Sebastian Bergmann
Browse files

Update Codecov.io action(s)

parent 6f9a7f31
No related branches found
No related tags found
No related merge requests found
......@@ -80,9 +80,15 @@ jobs:
run: "./tools/composer update --no-ansi --no-interaction --no-progress"
- name: "Run tests with PHPUnit"
run: "vendor/bin/phpunit --coverage-clover=coverage.xml"
run: "vendor/bin/phpunit --log-junit junit.xml --coverage-clover=coverage.xml"
- name: "Send code coverage report to Codecov.io"
env:
CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}"
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:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Upload code coverage data to Codecov.io
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment