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

30 lines
428 B
YAML
Raw Normal View History

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:
2018-01-13 00:26:51 +01:00
- >
echo;
echo "Validating the composer.json";
composer validate --no-check-all --no-check-lock --strict;
- >
echo;
echo "Linting all PHP files";
find Classes/ Tests/ -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l;