firefly-iii/.travis.yml
2017-01-24 12:33:16 +01:00

23 lines
474 B
YAML

language: php
php:
- 7.0
- 7.1
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- if [[ "$(php -v | grep 'PHP 7')" ]]; then phpenv config-rm xdebug.ini; fi
- rm composer.lock
- composer update --no-scripts
- cp .env.testing .env
- php artisan clear-compiled
- php artisan optimize
- php artisan env
- cp .env.testing .env
- mv storage/database/databasecopy.sqlite storage/database/database.sqlite
script:
- phpunit