You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
296 B
12 lines
296 B
language: php |
|
dist: trusty |
|
sudo: false |
|
php: |
|
- 7.1 |
|
- 7.2 |
|
- 7.3 |
|
install: composer install |
|
script: ./vendor/bin/phpunit --coverage-clover=coverage.clover |
|
after_script: |
|
- wget https://scrutinizer-ci.com/ocular.phar |
|
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
|
|
|