File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change 1
1
language : php
2
2
3
- env :
4
- global :
5
- - COMPOSER_FLAGS="--no-interaction"
6
-
7
3
matrix :
8
4
include :
9
5
- php : 7.0
12
8
- COMPOSER_LOCK=true
13
9
- php : 7.1
14
10
env :
15
- # Test lowest dependencies
16
- - COMPOSER_FLAGS="--no-interaction --prefer-lowest"
17
11
# Test code standard
18
12
- STATIC_ANALYSIS=true
19
13
# Test with updated dependencies
@@ -25,21 +19,21 @@ matrix:
25
19
install :
26
20
- |
27
21
if [[ $COMPOSER_LOCK = true ]]; then
28
- composer install $COMPOSER_FLAGS
22
+ composer install
29
23
else
30
- composer update $COMPOSER_FLAGS
24
+ composer update
31
25
fi
32
26
- composer $COMPOSER
33
27
# coding style
34
- - if [[ $STATIC_ANALYSIS != "" ]]; then composer create-project symplify/easy-coding-standard:v2.5.9 temp/ecs; fi
28
+ - if [[ $STATIC_ANALYSIS != "" ]]; then composer create-project symplify/easy-coding-standard:v2.5.12 temp/ecs; fi
35
29
36
30
script :
37
31
- vendor/bin/phpunit --coverage-clover=coverage.xml -v
38
32
# coding style
39
33
- if [[ $STATIC_ANALYSIS != "" ]]; then temp/ecs/bin/ecs check src tests; fi
40
34
41
35
after_script :
42
- - wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.1 /coveralls.phar;
36
+ - wget https://github.com/satooshi/php-coveralls/releases/download/v1.1.0 /coveralls.phar;
43
37
- php coveralls.phar --verbose;
44
38
45
39
notifications :
You can’t perform that action at this time.
0 commit comments