mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-15 06:08:16 +00:00
19 lines
310 B
YAML
19 lines
310 B
YAML
language: php
|
|
sudo: false
|
|
|
|
|
|
php:
|
|
- 5.5
|
|
- 5.6
|
|
|
|
install:
|
|
- composer update
|
|
- php artisan env
|
|
- mv -v .env.testing .env
|
|
|
|
script:
|
|
- phpunit
|
|
|
|
after_script:
|
|
- php vendor/bin/coveralls
|
|
- CODECLIMATE_REPO_TOKEN=26489f9e854fcdf7e7660ba29c1455694685465b1f90329a79f7d2bf448acb61 ./vendor/bin/test-reporter |