mirror of
https://github.com/ivuorinen/palette.git
synced 2026-01-26 11:34:09 +00:00
15 lines
314 B
YAML
15 lines
314 B
YAML
language: php
|
|
php:
|
|
- '7.0'
|
|
- '7.1'
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache/files
|
|
before_script:
|
|
- composer require php-coveralls/php-coveralls
|
|
- composer install
|
|
script:
|
|
- ./vendor/bin/phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml
|
|
after_script:
|
|
- php vendor/bin/coveralls -v
|