summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrédéric Guillot <fguillot@users.noreply.github.com>2014-04-26 14:24:48 -0400
committerFrédéric Guillot <fguillot@users.noreply.github.com>2014-04-26 14:24:48 -0400
commitda17e87878db0ae4d1751371a14092fef8c55d7c (patch)
treef8e6c7cf35ecc8dacd745341a0ead0e944050144
parentbf4cea045eb9780ceaff20e5ec285eb65fc5ce04 (diff)
Add travis-ci configuration
-rw-r--r--.travis.yml9
-rw-r--r--README.markdown2
-rw-r--r--phpunit.xml7
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