aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2017-10-01 18:31:28 +0200
committerGravatar GitHub <noreply@github.com> 2017-10-01 18:31:28 +0200
commitceda55c75b158fc1cf4813fe0f258527754b9289 (patch)
tree7c84ac32cc845ab1d70ea5a3fb263c6613de34b0 /.travis.yml
parentcb7ba3e47576aa1d0c3f53e5966f831e6540bbc3 (diff)
parentf241fc1841df89285ecb6f124f0d70198d712b2f (diff)
Merge pull request #1651 from FreshRSS/dev1.8.0
Release 1.8.0
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml34
1 files changed, 34 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 000000000..5c43e5666
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,34 @@
+language: php
+php:
+ - '5.4'
+ - '5.5'
+ - '5.6'
+ - '7.0'
+ - '7.1'
+ - hhvm
+ - nightly
+
+install:
+ # newest version without https://github.com/squizlabs/PHP_CodeSniffer/pull/1404
+ - pear install PHP_CodeSniffer-3.0.0RC4
+
+script:
+ - phpenv rehash
+ - phpcs . --standard=phpcs.xml --warning-severity=0 --extensions=php -p
+
+env: # important! otherwise no job will be allowed to fail
+matrix:
+ # PHP 5.3 only runs on Ubuntu 12.04 (precise), not 14.04 (trusty)
+ include:
+ - php: "5.3"
+ dist: precise
+ fast_finish: true
+ allow_failures:
+ - php: "5.3"
+ dist: precise
+ - php: "5.4"
+ - php: "5.5"
+ - php: "5.6"
+ - php: "7.0"
+ - php: hhvm
+ - php: nightly