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

26 lines
535 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'
sudo: false
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 07:50:10 +02:00
- composer install --no-interaction --prefer-dist --no-suggest --no-scripts --verbose
- php artisan migrate -v
- php artisan db:seed -v
script:
2017-06-16 07:50:10 +02:00
- vendor/bin/phpunit --coverage-clover coverage.xml
2017-06-16 06:07:39 +02:00
notifications:
email: false
after_success:
- codecov