File tree Expand file tree Collapse file tree 1 file changed +16
-6
lines changed Expand file tree Collapse file tree 1 file changed +16
-6
lines changed Original file line number Diff line number Diff line change 11language : php
2- services :
3- - docker
42
53matrix :
64 include :
75 - php : 7.0
6+ env :
7+ # Test commited lock file
8+ - COMPOSER_LOCK=true
89 - php : 7.1
910 env :
11+ # Test code standard
1012 - STATIC_ANALYSIS=true
13+ # Test with updated dependencies
1114 - php : 7.2
1215 - php : 7.3
1316 - php : 7.4
1417 fast_finish : true
1518
1619install :
17- - make setup
18- - composer install
20+ - |
21+ if [[ $COMPOSER_LOCK = true ]]; then
22+ composer install
23+ else
24+ composer update
25+ fi
26+ - composer $COMPOSER
1927 # coding style
2028 - if [[ $STATIC_ANALYSIS != "" ]]; then composer create-project symplify/easy-coding-standard:v2.5.12 temp/ecs; fi
2129
2230script :
23- - ./tools /phpunit --coverage-clover=coverage.xml -v
31+ - vendor/bin /phpunit --coverage-clover=coverage.xml -v
2432 # coding style
2533 - if [[ $STATIC_ANALYSIS != "" ]]; then temp/ecs/bin/ecs check src tests; fi
2634
@@ -29,6 +37,8 @@ after_script:
2937 - php coveralls.phar --verbose;
3038
3139notifications :
40+ irc : " irc.freenode.org#phpdocumentor"
3241 email :
33- - me@mikevanriel .com
42+ - mike.vanriel@naenius .com
344344+
You can’t perform that action at this time.
0 commit comments