phpvms/.travis.yml
2017-07-13 14:29:46 -05:00

21 lines
326 B
YAML

#dist: trusty
language: php
php:
- '7.0'
- '7.1'
# - hhvm
services:
- mysql
before_install:
- mysql -e 'CREATE DATABASE IF NOT EXISTS phpvms;'
before_script:
- cp .env.travis .env
- composer self-update
script:
- php artisan database:create --reset
- vendor/bin/phpunit --debug --verbose --testdox tests