Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/files_texteditor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-02-09 15:55:44 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2014-02-09 15:55:44 +0400
commit562df3912c1bfafe6f1709cdf3131ae705e08fbf (patch)
treea40add037cabc0e9bac1dd75b46e55b12ce7e04f /.travis.yml
parentf90357a9d314753b3d8734fbde78bf234736ada6 (diff)
Adding php syntax check via travis
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..b476cd9
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,16 @@
+# see http://about.travis-ci.org/docs/user/languages/php/ for more hints
+language: php
+
+# list any PHP version you want to test against
+php:
+ # using major version aliases
+
+ # aliased to a recent 5.3.x version
+ - 5.3
+ # aliased to a recent 5.4.x version
+ - 5.4
+ # aliased to a recent 5.5.x version
+ - 5.5
+
+script: ant test
+