firefly-iii/.travis.yml

22 lines
639 B
YAML
Raw Normal View History

language: php
sudo: false
php:
- 5.5
- 5.6
install:
- composer update
2015-02-07 03:16:14 -06:00
- php artisan env
2015-03-31 10:49:47 -05:00
- mv -v .env.testing .env
script:
2015-05-08 00:48:04 -05:00
- phpunit
after_script:
2015-03-31 10:49:47 -05:00
- php vendor/bin/coveralls
2015-05-24 14:45:10 -05:00
- CODECLIMATE_REPO_TOKEN=26489f9e854fcdf7e7660ba29c1455694685465b1f90329a79f7d2bf448acb61 ./vendor/bin/test-reporter --stdout > codeclimate.json
2015-05-25 13:08:31 -05:00
- "curl -X POST -d @codeclimate.json -H 'Content-Type: application/json' -H 'User-Agent: Code Climate (PHP Test Reporter v0.1.1)' https://codeclimate.com/test_reports"
2015-05-31 13:52:20 -05:00
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml