We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 096fba2 commit e66220dCopy full SHA for e66220d
1 file changed
.github/workflows/workflow.yml
@@ -31,11 +31,17 @@ jobs:
31
- name: Run Tests
32
run: |
33
php vendor/bin/phpunit --coverage-clover coverage.xml --configuration phpunit.xml tests
34
-
+
35
+ - name: Convert Clover to Cobertura
36
+ uses: actions/setup-node@v3
37
+ with:
38
+ node-version: 20
39
+ - run: npx clover-to-cobertura ./coverage.xml > ./coverage-cobertura.xml
40
41
- uses: qltysh/qlty-action/coverage@v2
42
with:
43
token: ${{ secrets.QLTY_COVERAGE_TOKEN }}
- files: ./coverage.xml
44
+ files: ./coverage-cobertura.xml
45
46
- name: Upload test results to Codecov
47
if: ${{ !cancelled() }}
0 commit comments