mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 03:10:32 -06:00
21 lines
306 B
YAML
21 lines
306 B
YAML
language: php
|
|
sudo: false
|
|
|
|
|
|
php:
|
|
- 5.6
|
|
- 7
|
|
|
|
install:
|
|
- composer install
|
|
- 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
|