2014-08-26 20:46:07 +04:00
|
|
|
language: php
|
|
|
|
php:
|
|
|
|
- 5.4
|
|
|
|
- 5.5
|
2016-03-17 15:54:26 +03:00
|
|
|
- 5.6
|
|
|
|
- 7.0
|
2018-08-06 14:14:08 +03:00
|
|
|
- 7.1
|
|
|
|
- 7.2
|
2014-08-26 20:46:07 +04:00
|
|
|
|
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- CURRENT_DIR=`pwd`
|
|
|
|
|
|
|
|
install:
|
|
|
|
- composer install --dev --no-interaction
|
|
|
|
|
|
|
|
script:
|
|
|
|
- mkdir -p build/logs
|
|
|
|
- cd tests
|
|
|
|
- phpunit --coverage-clover ../build/logs/clover.xml --configuration phpunit.xml
|
|
|
|
|
|
|
|
after_script:
|
|
|
|
- cd $CURRENT_DIR
|
|
|
|
- php vendor/bin/coveralls -v
|