14 lines
305 B
YAML
14 lines
305 B
YAML
|
language: php
|
||
|
|
||
|
before_script:
|
||
|
- |
|
||
|
# Remove Xdebug for a huge performance increase:
|
||
|
if [ -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini ]; then
|
||
|
phpenv config-rm xdebug.ini
|
||
|
else
|
||
|
echo "xdebug.ini does not exist"
|
||
|
fi
|
||
|
|
||
|
script:
|
||
|
- ./vendor/bin/phpcs -s -n -p *
|