You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- sudo: false
-
- language: php
-
- php:
- - 7.1
- - 7.2
- - nightly
-
- before_script:
- - psql -c 'DROP DATABASE IF EXISTS test;' -U postgres
- - psql -c 'create database test;' -U postgres
- - mysql -e 'create database IF NOT EXISTS test;'
- - composer install
-
- script:
- - mkdir -p build/logs
- - cd build
- - ../vendor/bin/phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml
- - cd ../
-
- after_script:
- - wget https://scrutinizer-ci.com/ocular.phar
- - php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
-
- matrix:
- allow_failures:
- - php: nightly
|