mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 02:56:13 +02:00
tea/.travis.yml
Oliver Klee aedcf4530c [TASK] Don't test with PHP 7.2 yet
The testing framework currently does not support PHP 7.2 yet.
2018-01-13 00:18:23 +01:00

22 lines
307 B
YAML

sudo: false
language: php
php:
- 7.0
- 7.1
cache:
directories:
- .Build/vendor
- $HOME/.composer/cache
before_install:
- phpenv config-rm xdebug.ini
install:
- composer install
script:
# Run PHP lint on all PHP files.
- find Classes/ Tests/ -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l