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 @@ -20,24 +20,34 @@ after_failure:
2020
2121jobs :
2222 include :
23- - env : title=" Lowest Dependencies"
23+ - name : Lowest Dependencies
2424 install :
2525 - travis_retry composer update --no-progress --prefer-dist --prefer-lowest --prefer-stable
2626
2727
28- - stage : Code Standard Checker
29- php : 7.1
28+ - name : Nette Code Checker
3029 install :
31- # Install Nette Code Checker
3230 - travis_retry composer create-project nette/code-checker temp/code-checker ^3 --no-progress
33- # Install Nette Coding Standard
34- - travis_retry composer create-project nette/coding-standard temp/coding-standard ^2 --no-progress
35-
3631 script :
3732 - php temp/code-checker/code-checker --strict-types
33+
34+
35+ - name : Nette Coding Standard
36+ install :
37+ - travis_retry composer create-project nette/coding-standard temp/coding-standard ^2 --no-progress
38+ script :
3839 - php temp/coding-standard/ecs check src tests --config temp/coding-standard/coding-standard-php71.yml
3940
4041
42+ - stage : Static Analysis (informative)
43+ install :
44+ # Install PHPStan
45+ - travis_retry composer create-project phpstan/phpstan-shim temp/phpstan --no-progress
46+ - travis_retry composer install --no-progress --prefer-dist
47+ script :
48+ - php temp/phpstan/phpstan.phar analyse --autoload-file vendor/autoload.php --level 5 src
49+
50+
4151 - stage : Code Coverage
4252 php : 7.2
4353 script :
4858
4959
5060 allow_failures :
61+ - stage : Static Analysis (informative)
5162 - stage : Code Coverage
5263
5364
You can’t perform that action at this time.
0 commit comments