phpOMS/.travis.yml
2018-08-04 16:00:13 +02:00

15 lines
436 B
YAML

language: php
dist: trusty
sudo: required
php:
- '7.2'
- nightly
services:
- mysql
before_script:
- mysql -e "use mysql; update user set authentication_string=PASSWORD('123456') where User='root'; update user set plugin='mysql_native_password';FLUSH PRIVILEGES;"
- sudo service mysql restart
- pecl install ast
- composer install
script:
- vendor/bin/phpunit --configuration tests/phpunit_no_coverage.xml