mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 19:31:01 -06:00
23 lines
441 B
YAML
23 lines
441 B
YAML
language: php
|
|
sudo: false
|
|
php:
|
|
- 7
|
|
|
|
install:
|
|
- phpenv config-rm xdebug.ini
|
|
- composer selfupdate
|
|
- rm composer.lock
|
|
- composer update --no-scripts
|
|
- php artisan clear-compiled
|
|
- php artisan optimize
|
|
- php artisan env
|
|
- mv -v .env.testing .env
|
|
- php artisan env
|
|
- touch storage/upload/at-1.data
|
|
- touch storage/upload/at-2.data
|
|
- touch storage/database/testing.db
|
|
- php artisan migrate --seed
|
|
|
|
script:
|
|
- phpunit
|