mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-29 02:11:12 -06:00
18 lines
261 B
YAML
18 lines
261 B
YAML
language: php
|
|
sudo: false
|
|
|
|
|
|
php:
|
|
- 5.6
|
|
|
|
install:
|
|
- composer update
|
|
- php artisan env
|
|
- mv -v .env.testing .env
|
|
- touch storage/database/testing.db
|
|
- php artisan migrate --env=testing
|
|
- php artisan migrate --seed --env=testing
|
|
|
|
script:
|
|
- phpunit
|