File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ WSC CI :
2+ script :
3+ - git ls-files | xargs wc -l
4+ - find . -type f -name '*.php' -not -path "./WCF/*" |xargs -I file php -l file
5+ - git clone --branch=next --depth=1 --quiet git://github.com/WoltLab/WCF.git WCF
6+ - phpcs -p --extensions=php --standard="`pwd`/WCF/CodeSniff/WCF" . --ignore="/WCF/*" --ignore="/files/lib/system/api/phpqrcode/*"
Original file line number Diff line number Diff line change 1+ language : php
2+ sudo : false
3+ php :
4+ - 7.3
5+ before_install :
6+ - pear install pear/PHP_CodeSniffer
7+ - phpenv rehash
8+ before_script :
9+ - git clone --branch=next --depth=1 --quiet git://github.com/WoltLab/WCF.git WCF
10+ script :
11+ - find . -type f -name '*.php' -not -path './WCF/*' -print0 |xargs -0 -I file -P 4 php -l file > /dev/null
12+ - phpcs -p --extensions=php --standard="`pwd`/WCF/CodeSniff/WCF" . --ignore="/WCF/*" --ignore="/files/lib/system/api/phpqrcode/*"
13+ notifications :
14+ email : false
You can’t perform that action at this time.
0 commit comments