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 a5b9d39 commit f0c13ceCopy full SHA for f0c13ce
.github/workflows/php.yml
@@ -17,4 +17,6 @@ jobs:
17
run: composer install --prefer-dist --no-progress --no-suggest
18
19
- name: Run test suite
20
- run: composer run-script test
+ run: composer run-script ci-test
21
+
22
+ - uses: codecov/codecov-action@v1
composer.json
@@ -16,7 +16,8 @@
16
],
"license": "MIT",
"scripts": {
- "test": "vendor/bin/phpunit"
+ "test": "vendor/bin/phpunit",
+ "ci-test": "vendor/bin/phpunit --coverage-clover coverage.xml"
},
"require": {
23
"illuminate/support": "^6.0",
0 commit comments