sudo: false language: php php: - 7.0 - 7.1 - 7.2 - nightly matrix: allow_failures: - php: nightly fast_finish: true env: - AMP_DEBUG=true before_install: - phpenv config-rm xdebug.ini || echo "No xdebug config." install: - composer update -n --prefer-dist - wget https://github.com/php-coveralls/php-coveralls/releases/download/v1.0.2/coveralls.phar - chmod +x coveralls.phar script: # Run with phpdbg or xdebug as soon as one of both doesn't segfault anymore - vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml - (for f in examples/*.php; do echo $f && if ! php $f; then echo '!! failed !!' && exit 1; fi && echo "-------"; done) - PHP_CS_FIXER_IGNORE_ENV=1 php vendor/bin/php-cs-fixer --diff --dry-run -v fix after_script: - ./coveralls.phar -v cache: directories: - $HOME/.composer/cache/files