We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e66220d commit 0561989Copy full SHA for 0561989
1 file changed
.github/workflows/workflow.yml
@@ -32,11 +32,13 @@ jobs:
32
run: |
33
php vendor/bin/phpunit --coverage-clover coverage.xml --configuration phpunit.xml tests
34
35
+ - name: Download clover-to-cobertura converter
36
+ run: |
37
+ curl https://raw.githubusercontent.com/ngyuki/clover-to-cobertura/master/clover-to-cobertura.php -o clover-to-cobertura.php
38
+
39
- name: Convert Clover to Cobertura
- uses: actions/setup-node@v3
- with:
- node-version: 20
- - run: npx clover-to-cobertura ./coverage.xml > ./coverage-cobertura.xml
40
41
+ php clover-to-cobertura.php < coverage.xml > coverage-cobertura.xml
42
43
- uses: qltysh/qlty-action/coverage@v2
44
with:
0 commit comments