22 lines
663 B
YAML
22 lines
663 B
YAML
filter:
|
|
excluded_paths:
|
|
- 'tests/*'
|
|
build:
|
|
tests:
|
|
override:
|
|
- command: 'mkdir -p build/logs'
|
|
- command: 'php vendor/bin/phpunit --coverage-clover=build/logs/clover.xml'
|
|
coverage:
|
|
file: 'build/logs/clover.xml'
|
|
format: 'clover'
|
|
nodes:
|
|
tests: true
|
|
analysis:
|
|
tests:
|
|
override:
|
|
- command: phpcs-run ./
|
|
use_website_config: false
|
|
- php-scrutinizer-run
|
|
tools:
|
|
php_cs_fixer:
|
|
config: { level: psr2 } # or psr1 if you would just like to get fixes for PSR1 |