mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 11:20:39 -06:00
23 lines
306 B
YAML
23 lines
306 B
YAML
language: php
|
|
sudo: false
|
|
|
|
|
|
php:
|
|
- 5.5
|
|
- 5.6
|
|
|
|
addons:
|
|
code_climate:
|
|
repo_token: 26489f9e854fcdf7e7660ba29c1455694685465b1f90329a79f7d2bf448acb61
|
|
|
|
install:
|
|
- composer update
|
|
- php artisan env
|
|
- mv -v .env.testing .env
|
|
|
|
script:
|
|
- phpunit --debug
|
|
|
|
after_script:
|
|
- php vendor/bin/coveralls
|