firefly-iii/.travis.yml

23 lines
474 B
YAML
Raw Normal View History

2016-11-19 09:03:59 -06:00
language: php
php:
2017-01-24 04:49:05 -06:00
- 7.0
- 7.1
cache:
directories:
- vendor
- $HOME/.composer/cache
2016-11-19 09:03:59 -06:00
install:
2017-01-24 05:33:16 -06:00
- if [[ "$(php -v | grep 'PHP 7')" ]]; then phpenv config-rm xdebug.ini; fi
2016-11-19 09:03:59 -06:00
- rm composer.lock
- composer update --no-scripts
2017-01-24 05:08:06 -06:00
- cp .env.testing .env
2016-11-19 09:03:59 -06: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 09:03:59 -06:00
script:
- phpunit