1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-27 20:32:28 +01:00
Pterodactyl-Panel/.travis.yml

27 lines
545 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
- composer self-update
- composer install --no-interaction
- php artisan key:generate --force
- php artisan migrate --force
- php artisan db:seed --force
script:
- vendor/bin/phpunit --coverage-clover=coverage.xml
2017-06-16 06:07:39 +02:00
notifications:
email: false