Permalink
Browse files
travis: finely segmented matrix, added PhpStan
- Loading branch information...
Showing
with
18 additions
and
8 deletions.
-
+18
−8
.travis.yml
|
@@ -12,29 +12,38 @@ install: |
|
|
|
- travis_retry composer install --no-progress --prefer-dist |
|
|
|
|
|
|
|
script: |
|
|
|
- vendor/bin/tester tests -s -p php |
|
|
|
- vendor/bin/tester tests -s |
|
|
|
|
|
|
|
after_failure: |
|
|
|
# Print *.actual content |
|
|
|
- for i in $(find tests -name \*.actual); do echo "--- $i"; cat $i; echo; echo; done |
|
|
|
|
|
|
|
jobs: |
|
|
|
include: |
|
|
|
- stage: Code Standard Checker |
|
|
|
php: 7.1 |
|
|
|
- name: Nette Code Checker |
|
|
|
install: |
|
|
|
# Install Nette Code Checker |
|
|
|
- travis_retry composer create-project nette/code-checker temp/code-checker ^3 --no-progress |
|
|
|
# Install Nette Coding Standard |
|
|
|
- travis_retry composer create-project nette/coding-standard temp/coding-standard ^2 --no-progress |
|
|
|
script: |
|
|
|
- php temp/code-checker/code-checker --strict-types |
|
|
|
|
|
|
|
|
|
|
|
- name: Nette Coding Standard |
|
|
|
install: |
|
|
|
- travis_retry composer create-project nette/coding-standard temp/coding-standard ^2 --no-progress |
|
|
|
script: |
|
|
|
- php temp/code-checker/code-checker |
|
|
|
- php temp/coding-standard/ecs check src tests --config temp/coding-standard/coding-standard-php71.yml |
|
|
|
|
|
|
|
|
|
|
|
- stage: Static Analysis (informative) |
|
|
|
install: |
|
|
|
# Install PHPStan |
|
|
|
- travis_retry composer create-project phpstan/phpstan-shim temp/phpstan --no-progress |
|
|
|
- travis_retry composer install --no-progress --prefer-dist |
|
|
|
script: |
|
|
|
- php temp/phpstan/phpstan.phar analyse --autoload-file vendor/autoload.php --level 5 src |
|
|
|
|
|
|
|
|
|
|
|
- stage: Code Coverage |
|
|
|
php: 7.1 |
|
|
|
script: |
|
|
|
- vendor/bin/tester -p phpdbg tests -s --coverage ./coverage.xml --coverage-src ./src |
|
|
|
after_script: |
|
@@ -43,6 +52,7 @@ jobs: |
|
|
|
|
|
|
|
|
|
|
|
allow_failures: |
|
|
|
- stage: Static Analysis (informative) |
|
|
|
- stage: Code Coverage |
|
|
|
|
|
|
|
|
|
|
0 comments on commit
6d0965a