mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 08:16:13 +02:00
tea/.travis.yml

24 lines
313 B
YAML
Raw Normal View History

sudo: false
language: php
php:
- 7.0
- 7.1
- 7.2
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