File tree Expand file tree Collapse file tree 1 file changed +18
-7
lines changed Expand file tree Collapse file tree 1 file changed +18
-7
lines changed Original file line number Diff line number Diff line change @@ -23,24 +23,34 @@ after_failure:
2323
2424jobs :
2525 include :
26- - env : title=" Lowest Dependencies"
26+ - name : Lowest Dependencies
2727 install :
2828 - travis_retry composer update --no-progress --prefer-dist --prefer-lowest --prefer-stable
2929
3030
31- - stage : Code Standard Checker
32- php : 7.1
31+ - name : Nette Code Checker
3332 install :
34- # Install Nette Code Checker
3533 - travis_retry composer create-project nette/code-checker temp/code-checker ^3 --no-progress
36- # Install Nette Coding Standard
37- - travis_retry composer create-project nette/coding-standard temp/coding-standard ^2 --no-progress
38-
3934 script :
4035 - php temp/code-checker/code-checker --strict-types
36+
37+
38+ - name : Nette Coding Standard
39+ install :
40+ - travis_retry composer create-project nette/coding-standard temp/coding-standard ^2 --no-progress
41+ script :
4142 - php temp/coding-standard/ecs check src tests --config temp/coding-standard/coding-standard-php71.yml
4243
4344
45+ - stage : Static Analysis (informative)
46+ install :
47+ # Install PHPStan
48+ - travis_retry composer create-project phpstan/phpstan-shim temp/phpstan --no-progress
49+ - travis_retry composer install --no-progress --prefer-dist
50+ script :
51+ - php temp/phpstan/phpstan.phar analyse --autoload-file vendor/autoload.php --level 5 src
52+
53+
4454 - stage : Code Coverage
4555 php : 7.2
4656 script :
5161
5262
5363 allow_failures :
64+ - stage : Static Analysis (informative)
5465 - stage : Code Coverage
5566
5667
You can’t perform that action at this time.
0 commit comments