File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 77matrix :
88 include :
99 - php : 7.1
10- env : STATIC_ANALYSIS=true
10+ env : ECS=true
11+ - php : 7.1
12+ env : PHPSTAN=true
1113
1214cache :
1315 directories :
1416 - $HOME/.composer/cache
1517
1618install :
1719 - composer install --no-interaction
18- # coding style
19- - if [[ $STATIC_ANALYSIS != "" ]]; then composer create-project symplify/easy-coding-standard temp/ecs; fi
20+ - if [[ $ECS != "" ]]; then composer create-project symplify/easy-coding-standard temp/ecs; fi
2021
2122script :
2223 - vendor/bin/phpunit --coverage-clover=coverage.xml -v
23- # coding style
24- - if [[ $STATIC_ANALYSIS != "" ]]; then temp/ecs/bin/ecs check src tests; fi
25- - if [[ $STATIC_ANALYSIS != "" ]]; then vendor/bin/phpstan analyse src --level max --configuration phpstan.neon; fi
24+ - if [[ $ECS != "" ]]; then temp/ecs/bin/ecs check src tests; fi
25+ - if [[ $PHPSTAN != "" ]]; then vendor/bin/phpstan analyse src tests --level max --configuration phpstan.neon; fi
2626
2727after_script :
2828 - wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar;
You can’t perform that action at this time.
0 commit comments