Pterodactyl-Panel/.travis.yml

27 lines
556 B
YAML
Raw Normal View History

2017-06-16 06:07:39 +02:00
language: php
dist: trusty
php:
2017-06-16 06:07:39 +02:00
- '7.0'
- '7.1'
- nightly
sudo: required
cache:
directories:
- $HOME/.composer/cache
services:
- mysql
before_install:
2017-06-16 06:07:39 +02:00
- mysql -e 'CREATE DATABASE IF NOT EXISTS travis;'
before_script:
- phpenv config-rm xdebug.ini
- cp .env.travis .env
2017-06-16 06:29:19 +02:00
- composer install --no-interaction --no-scripts --prefer-dist --no-suggest
- php artisan migrate --force -v
- php artisan db:seed --force -v
script:
- vendor/bin/phpunit --coverage-clover=coverage.xml
2017-06-16 06:07:39 +02:00
notifications:
email: false
after_success:
- codecov