Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/Codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,23 +38,23 @@ jobs:
- name: Run PHPUnit unit tests with coverage and test results
run: phpunit --testsuite unit --coverage-clover=coverage-unit.xml --log-junit junit.xml
- name: Upload unit coverage to Codecov
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
with:
files: ./coverage-unit.xml
flags: unit
token: ${{ secrets.CODECOV_TOKEN }}
- name: Run PHPUnit integration tests with coverage and test results
run: phpunit --testsuite integration --coverage-clover=coverage-integration.xml --log-junit junit.xml
- name: Upload integration coverage to Codecov
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
with:
files: ./coverage-integration.xml
flags: integration
token: ${{ secrets.CODECOV_TOKEN }}
- name: Run PHPUnit smoke tests with coverage and test results
run: phpunit --testsuite smoke --coverage-clover=coverage-smoke.xml --log-junit junit.xml
- name: Upload smoke coverage to Codecov
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
with:
files: ./coverage-smoke.xml
flags: smoke
Expand Down