Files
firefly-iii/.travis.yml

29 lines
539 B
YAML
Raw Normal View History

2016-11-19 16:03:59 +01:00
language: php
php:
2017-01-24 11:49:05 +01:00
- 7.0
- 7.1
- nightly
- hhvm
matrix:
allow_failures:
- php: hhvm
cache:
directories:
- vendor
- $HOME/.composer/cache
2016-11-19 16:03:59 +01:00
install:
2017-01-24 12:15:52 +01:00
- if [[ "$(php -v | grep 'PHP 7')" ]]; then phpenv config-rm xdebug.ini; fi
2016-11-19 16:03:59 +01:00
- rm composer.lock
- composer update --no-scripts
2017-01-24 12:08:06 +01:00
- cp .env.testing .env
2016-11-19 16:03:59 +01:00
- php artisan clear-compiled
- php artisan optimize
- php artisan env
- cp .env.testing .env
- mv storage/database/databasecopy.sqlite storage/database/database.sqlite
2016-11-19 16:03:59 +01:00
script:
- phpunit