mirror of
https://gh.wpcy.net/https://github.com/rilustrisimo/freescout-support.git
synced 2026-04-30 14:42:23 +08:00
18 lines
321 B
YAML
18 lines
321 B
YAML
language: php
|
|
|
|
php:
|
|
- 7.1
|
|
- 7.2
|
|
- 7.3
|
|
- 7.4
|
|
|
|
install:
|
|
- travis_retry composer install --no-interaction --prefer-source
|
|
|
|
script:
|
|
- XDEBUG_MODE=coverage vendor/bin/phpunit
|
|
|
|
after_script:
|
|
- wget https://scrutinizer-ci.com/ocular.phar
|
|
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
|
|
|