Add travis-ci configuration

This commit is contained in:
Frédéric Guillot 2014-04-26 14:24:48 -04:00
parent bf4cea045e
commit da17e87878
3 changed files with 18 additions and 0 deletions

9
.travis.yml Normal file
View File

@ -0,0 +1,9 @@
language: php
php:
- "5.5"
- "5.4"
- "5.3"
before_script: wget https://phar.phpunit.de/phpunit.phar
script: php phpunit.phar

View File

@ -36,6 +36,8 @@ Known bugs
See Issues: <https://github.com/fguillot/kanboard/issues>
[![Build Status](https://travis-ci.org/fguillot/kanboard.svg)](https://travis-ci.org/fguillot/kanboard)
License
-------

7
phpunit.xml Normal file
View File

@ -0,0 +1,7 @@
<phpunit>
<testsuites>
<testsuite name="Kanboard">
<directory>tests</directory>
</testsuite>
</testsuites>
</phpunit>