Files
icehrm/.travis.yml
2017-09-04 14:54:44 +02:00

17 lines
406 B
YAML

services:
- mysql
before_script:
- echo "USE mysql;\nUPDATE user SET password=PASSWORD('dev') WHERE user='root';\nFLUSH PRIVILEGES;\n" | mysql -u root
install:
- wget https://phar.phpunit.de/phpunit-5.7.phar
- chmod +x phpunit-5.7.phar
- sudo mv phpunit-5.7.phar phpunit
- phpunit --version
language: php
php:
- '5.5'
- '5.6'
- '7.0'
- nightly
after_failure: "cat /tmp/icehrm.test.log"