We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 336247c commit 4c6fe70Copy full SHA for 4c6fe70
.github/workflows/build.yml
@@ -49,3 +49,18 @@ jobs:
49
50
- name: Run tests
51
run: composer test
52
+
53
+ - name: Run Infection
54
+ run: composer infection
55
+ env:
56
+ INFECTION_DASHBOARD_API_KEY: ${{ secrets.INFECTION_DASHBOARD_API_KEY }}
57
58
+ - name: Upload coverage to Codecov.io
59
+ run: bash <(curl -s https://codecov.io/bash -s "build/logs")
60
+ continue-on-error: true
61
62
+ - name: Upload coverage to Scrutinizer
63
+ uses: sudo-bot/action-scrutinizer@latest
64
+ with:
65
+ cli-args: --format=php-clover build/logs/clover.xml
66
0 commit comments