phpvms/.travis.yml
2017-07-25 10:59:17 -05:00

32 lines
544 B
YAML

#dist: trusty
language: php
php:
- '7.0'
- '7.1'
# - hhvm
services:
- mysql
before_install:
- go get -u github.com/tcnksm/ghr
- mysql -e 'CREATE DATABASE IF NOT EXISTS phpvms;'
before_script:
- cp .env.travis .env
- composer self-update
- composer install --no-interaction
script:
- php artisan database:create --reset
- vendor/bin/phpunit --debug --verbose
after_success:
- | # Add binary to GitHub release.
if test "$TRAVIS_TAG"
then
echo "Branch name is $TRAVIS_TAG"
else
echo "no branch name"
fi