mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-02 13:39:19 -06:00
b3d99cd210
- adds contants for transaction type names - demeter law = never speaks with strangers
19 lines
269 B
YAML
19 lines
269 B
YAML
language: php
|
|
sudo: false
|
|
|
|
|
|
php:
|
|
- 5.5
|
|
- 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
|