Skip to content

Commit d00cc1e

Browse files
Test agains neweset dependencies
1 parent 3aac25d commit d00cc1e

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

.travis.yml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,29 @@
11
language: php
22

3-
php:
4-
- 7.0
5-
- 7.1
6-
- 7.2
3+
4+
env:
5+
global:
6+
- USE_COMPOSER_LOCK=false
77

88
matrix:
99
include:
10+
- php: 7.0
11+
env:
12+
- USE_COMPOSER_LOCK=true
1013
- php: 7.1
11-
env: STATIC_ANALYSIS=true
14+
- COMPOSER_FLAGS="--prefer-lowest"
15+
- php: 7.2
16+
- php: 7.3
17+
env:
18+
- STATIC_ANALYSIS=true
1219

1320
cache:
1421
directories:
1522
- $HOME/.composer/cache
1623

1724
install:
18-
- composer install --no-interaction
25+
- if [[ $USE_COMPOSER_LOCK != "false" ]]; then rm composer.lock; fi
26+
- composer install --no-interaction $COMPOSER_FLAGS
1927
# coding style
2028
- if [[ $STATIC_ANALYSIS != "" ]]; then composer create-project symplify/easy-coding-standard temp/ecs; fi
2129

0 commit comments

Comments
 (0)