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 a4d4c9a commit 95e09d7Copy full SHA for 95e09d7
.travis.yml
@@ -11,9 +11,14 @@ before_script:
11
- composer install --no-interaction
12
13
script:
14
- - vendor/bin/phpunit
+ - vendor/bin/phpunit --coverage-clover=coverage.clover
15
- vendor/bin/phpcs --standard=PSR2 ./src/
16
17
+after_script:
18
+ - wget https://scrutinizer-ci.com/ocular.phar
19
+ - php ocular.phar code-coverage:upload --format=php-clover coverage.clover
20
+
21
# Use Travis' new container-based infrastructure.
22
# See http://docs.travis-ci.com/user/migrating-from-legacy/#How-can-I-use-container-based-infrastructure%3F
-sudo: false
23
+sudo: false
24
0 commit comments