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:
23
23
24
24
jobs :
25
25
include :
26
- - env : title=" Lowest Dependencies"
26
+ - name : Lowest Dependencies
27
27
install :
28
28
- travis_retry composer update --no-progress --prefer-dist --prefer-lowest --prefer-stable
29
29
30
30
31
- - stage : Code Standard Checker
32
- php : 7.1
31
+ - name : Nette Code Checker
33
32
install :
34
- # Install Nette Code Checker
35
33
- 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
-
39
34
script :
40
35
- 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 :
41
42
- php temp/coding-standard/ecs check src tests --config temp/coding-standard/coding-standard-php71.yml
42
43
43
44
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
+
44
54
- stage : Code Coverage
45
55
php : 7.2
46
56
script :
51
61
52
62
53
63
allow_failures :
64
+ - stage : Static Analysis (informative)
54
65
- stage : Code Coverage
55
66
56
67
You can’t perform that action at this time.
0 commit comments