phpvms/.travis.yml
2017-07-13 13:45:59 -05:00

21 lines
259 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
- make build
script:
- make tests