We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6f1123 commit a4cb777Copy full SHA for a4cb777
.github/workflows/ci.yaml
@@ -45,4 +45,14 @@ jobs:
45
composer-options: "--prefer-dist --no-progress"
46
47
- name: Run tests
48
- run: composer run test
+ run: composer run test
49
+
50
+ - name: Coverage report
51
+ run: XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-clover coverage.xml
52
53
+ - name: Upload coverage reports to Codecov
54
+ run: |
55
+ # Replace `linux` below with the appropriate OS
56
+ curl -Os https://uploader.codecov.io/latest/linux/codecov
57
+ chmod +x codecov
58
+ ./codecov -t ${CODECOV_TOKEN}
0 commit comments