Skip to content

Commit 8c3240d

Browse files
committed
Added phpstan in CI build
1 parent 6fc71fe commit 8c3240d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ env:
88
global:
99
- COMPOSER_ARGS="--no-interaction"
1010
- COVERAGE_DEPS="php-coveralls/php-coveralls"
11+
- STATIC_ANALYSIS_DEPS="phpstan/phpstan"
1112

1213
matrix:
1314
fast_finish: true
@@ -21,6 +22,7 @@ matrix:
2122
- CS_CHECK=true
2223
- BENCHMARKS=true
2324
- TEST_COVERAGE=true
25+
- STATIC_ANALYSIS=true
2426
- php: 7.4
2527
env:
2628
- DEPS=lowest
@@ -36,12 +38,14 @@ install:
3638
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
3739
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
3840
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi
41+
- if [[ $STATIC_ANALYSIS == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $STATIC_ANALYSIS_DEPS ; fi
3942
- stty cols 120 && composer show
4043

4144
script:
4245
- if [[ $TEST_COVERAGE == 'true' ]]; then composer test-coverage ; else composer test ; fi
4346
- if [[ $BENCHMARKS == 'true' ]]; then vendor/bin/phpbench run --revs=2 --iterations=2 --report=aggregate ; fi
4447
- if [[ $CS_CHECK == 'true' ]]; then composer cs-check ; fi
48+
- if [[ $STATIC_ANALYSIS == 'true' ]]; then ./vendor/bin/phpstan analyse --no-progress ; fi
4549

4650
after_script:
4751
- if [[ $TEST_COVERAGE == 'true' ]]; then vendor/bin/php-coveralls -v ; fi

0 commit comments

Comments
 (0)