| 1234567891011121314151617181920212223242526272829303132333435 |
- tools:
- external_code_coverage:
- timeout: 1800
- runs: 3
- build:
- environment:
- php:
- version: 7.2
- nodes:
- phpcs:
- tests:
- override:
- - phpcs-run src/ tests/
- static-analysis:
- environment:
- php:
- ini:
- 'memory_limit': -1
- dependencies:
- override:
- - pecl install apcu
- - pecl install redis
- - pecl install memcached
- - composer stan-setup
- tests:
- override:
- - vendor/bin/phpstan analyse src/
- - vendor/bin/psalm --show-info=false
- build_failure_conditions:
- - 'issues.count > 0'
- - 'project.metric_change("scrutinizer.test_coverage", < -0.01)'
|