mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-28 03:34:32 -06:00
18 lines
294 B
YAML
18 lines
294 B
YAML
language: php
|
|
sudo: false
|
|
php:
|
|
- '7.0'
|
|
|
|
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
|
|
- ./test.sh -r
|
|
- php artisan env
|
|
|
|
script:
|
|
- phpunit |