1
0
Fork 0
mirror of https://github.com/Oreolek/kangana.git synced 2024-06-16 15:01:09 +03:00
kangana/.travis.yml

20 lines
803 B
YAML
Raw Normal View History

2016-11-12 08:06:39 +02:00
language: php
php:
- "7.0"
2016-11-12 12:24:55 +02:00
cache:
directories:
- vendor
2016-11-12 08:06:39 +02:00
before_script:
2016-11-12 12:24:55 +02:00
- composer install --prefer-dist
- phpenv config-rm xdebug.ini
2016-11-12 08:06:39 +02:00
# 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:
2016-11-12 12:27:48 +02:00
- 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
2016-11-12 12:24:55 +02:00
# - php-codesniffer/scripts/phpcs -p -s -v -n --standard=Kohana --extensions=php application