We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ff9ca3 commit 0ded207Copy full SHA for 0ded207
.travis.yml
@@ -5,19 +5,24 @@ php:
5
- 7.1
6
- 7.2
7
8
+matrix:
9
+ include:
10
+ - php: 7.1
11
+ env: STATIC_ANALYSIS=true
12
+
13
cache:
14
directories:
15
- $HOME/.composer/cache
16
17
install:
18
- composer install --no-interaction
19
# coding style
- - composer create-project symplify/easy-coding-standard temp/ecs
20
+ - if [[ $STATIC_ANALYSIS != "" ]]; then composer create-project symplify/easy-coding-standard temp/ecs; fi
21
22
script:
23
- vendor/bin/phpunit --coverage-clover=coverage.clover -v
24
- - temp/ecs/bin/ecs check src tests
25
+ - if [[ $STATIC_ANALYSIS != "" ]]; then temp/ecs/bin/ecs check src tests; fi
26
27
after_script:
28
- wget https://scrutinizer-ci.com/ocular.phar
0 commit comments