1
0
Fork 0
mirror of https://github.com/Oreolek/kangana.git synced 2024-06-26 03:40:56 +03:00
kangana/.travis.yml

22 lines
880 B
YAML

language: php
php:
- "7.0"
cache:
directories:
- vendor
before_script:
- composer install --prefer-dist
- phpenv config-rm xdebug.ini
- chmod -R +w `pwd`/application/logs
- chmod -R +w `pwd`/application/cache
# install CodeSniffer for Kohana Coding Standards checks
# - git clone https://github.com/squizlabs/PHP_CodeSniffer.git php-codesniffer --depth=1
# Install Kohana Coding Standards
# - git clone https://github.com/kohana/coding-standards.git kohana-coding-standards --depth=1
# - cd php-codesniffer
# - scripts/phpcs --config-set installed_paths ../kohana-coding-standards
script:
- find application -name "*.php" -print0 | xargs -0 -n1 -P8 php -l | grep -v '^No syntax errors detected' ; test $? -eq 1
- vendor/bin/phpunit -c application/tests
# - php-codesniffer/scripts/phpcs -p -s -v -n --standard=Kohana --extensions=php application