File tree Expand file tree Collapse file tree 1 file changed +6
-16
lines changed Expand file tree Collapse file tree 1 file changed +6
-16
lines changed Original file line number Diff line number Diff line change 1
1
language : php
2
+ services :
3
+ - docker
2
4
3
5
matrix :
4
6
include :
5
7
- php : 7.0
6
- env :
7
- # Test commited lock file
8
- - COMPOSER_LOCK=true
9
8
- php : 7.1
10
9
env :
11
- # Test code standard
12
10
- STATIC_ANALYSIS=true
13
- # Test with updated dependencies
14
11
- php : 7.2
15
12
- php : 7.3
16
13
- php : 7.4
17
14
fast_finish : true
18
15
19
16
install :
20
- - |
21
- if [[ $COMPOSER_LOCK = true ]]; then
22
- composer install
23
- else
24
- composer update
25
- fi
26
- - composer $COMPOSER
17
+ - make setup
18
+ - composer install
27
19
# coding style
28
20
- if [[ $STATIC_ANALYSIS != "" ]]; then composer create-project symplify/easy-coding-standard:v2.5.12 temp/ecs; fi
29
21
30
22
script :
31
- - vendor/bin /phpunit --coverage-clover=coverage.xml -v
23
+ - ./tools /phpunit --coverage-clover=coverage.xml -v
32
24
# coding style
33
25
- if [[ $STATIC_ANALYSIS != "" ]]; then temp/ecs/bin/ecs check src tests; fi
34
26
@@ -37,8 +29,6 @@ after_script:
37
29
- php coveralls.phar --verbose;
38
30
39
31
notifications :
40
- irc : " irc.freenode.org#phpdocumentor"
41
32
email :
42
- - mike.vanriel@naenius .com
33
+ - me@mikevanriel .com
43
34
44
-
You can’t perform that action at this time.
0 commit comments