File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 8
8
global :
9
9
- COMPOSER_ARGS="--no-interaction"
10
10
- COVERAGE_DEPS="php-coveralls/php-coveralls"
11
+ - STATIC_ANALYSIS_DEPS="phpstan/phpstan"
11
12
12
13
matrix :
13
14
fast_finish : true
@@ -21,6 +22,7 @@ matrix:
21
22
- CS_CHECK=true
22
23
- BENCHMARKS=true
23
24
- TEST_COVERAGE=true
25
+ - STATIC_ANALYSIS=true
24
26
- php : 7.4
25
27
env :
26
28
- DEPS=lowest
@@ -36,12 +38,14 @@ install:
36
38
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
37
39
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
38
40
- 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
39
42
- stty cols 120 && composer show
40
43
41
44
script :
42
45
- if [[ $TEST_COVERAGE == 'true' ]]; then composer test-coverage ; else composer test ; fi
43
46
- if [[ $BENCHMARKS == 'true' ]]; then vendor/bin/phpbench run --revs=2 --iterations=2 --report=aggregate ; fi
44
47
- if [[ $CS_CHECK == 'true' ]]; then composer cs-check ; fi
48
+ - if [[ $STATIC_ANALYSIS == 'true' ]]; then ./vendor/bin/phpstan analyse --no-progress ; fi
45
49
46
50
after_script :
47
51
- if [[ $TEST_COVERAGE == 'true' ]]; then vendor/bin/php-coveralls -v ; fi
You can’t perform that action at this time.
0 commit comments