diff options
-rw-r--r-- | .travis.yml | 9 | ||||
-rw-r--r-- | README.markdown | 2 | ||||
-rw-r--r-- | phpunit.xml | 7 |
3 files changed, 18 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..cc70a9d7 --- /dev/null +++ b/.travis.yml @@ -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
\ No newline at end of file diff --git a/README.markdown b/README.markdown index 3858c1e6..afa6e8f3 100644 --- a/README.markdown +++ b/README.markdown @@ -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 ------- diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 00000000..0a1e5c45 --- /dev/null +++ b/phpunit.xml @@ -0,0 +1,7 @@ +<phpunit> + <testsuites> + <testsuite name="Kanboard"> + <directory>tests</directory> + </testsuite> + </testsuites> +</phpunit>
\ No newline at end of file |