File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 77 - 5.5
88 - 5.6
99 - 7.0
10+ - 7.1
1011 - hhvm
1112 - nightly
1213
1314matrix :
1415 allow_failures :
15- - php : nightly
16+ - php :
17+ - nightly
1618
1719install :
1820 - composer install
1921
2022before_script :
23+ # Install 'imagick' plugin (pecl will not install it on 5.3, hhvm does not use pecl)
24+ - sh -c "if [ $TRAVIS_PHP_VERSION != 'hhvm' ] && [ $TRAVIS_PHP_VERSION != '5.3' ]; then printf "\n" | pecl install imagick; fi"
25+ # Directory for coverage report
2126 - mkdir -p build/logs/
2227
2328script :
29+ # Check code style
2430 - php vendor/bin/phpcs --standard=psr2 src/ -n
31+ # Run tests
2532 - php vendor/bin/phpunit --coverage-clover build/logs/clover.xml
2633
2734after_success :
35+ # Upload coverage statistics to coveralls service after test
2836 - wget -c -nc https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar
2937 - php coveralls.phar -v
3038...
You can’t perform that action at this time.
0 commit comments