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

34 lines
429 B
YAML
Raw Normal View History

sudo: false
language: php
php:
- 7.0
- 7.1
env:
- TYPO3_VERSION="^7.6"
- TYPO3_VERSION="^8.7"
matrix:
exclude:
cache:
directories:
- .Build/vendor
- $HOME/.composer/cache
before_install:
- phpenv config-rm xdebug.ini
install:
- composer require-typo3-version "$TYPO3_VERSION"
- git checkout .
- export TYPO3_PATH_ROOT=$PWD/.Build/public
script:
2018-01-13 00:26:51 +01:00
- >
echo;
echo "Linting all PHP files";
composer ci:php:lint;