mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-27 01:11:37 -06:00
22 lines
351 B
YAML
22 lines
351 B
YAML
language: php
|
|
sudo: false
|
|
|
|
|
|
php:
|
|
- 7
|
|
|
|
install:
|
|
- composer selfupdate
|
|
- composer install --no-dev
|
|
- composer update
|
|
- 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
|