21 lines
300 B
YAML
21 lines
300 B
YAML
language: php
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache
|
|
|
|
php:
|
|
- '7.0'
|
|
- '7.1'
|
|
- '7.2'
|
|
- '7.3'
|
|
|
|
before_script:
|
|
- flags="-o"
|
|
- composer install $flags
|
|
|
|
script: php ./vendor/phpunit/phpunit/phpunit -c phpunit.xml.dist
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|