forked from stof/StofDoctrineExtensionsBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (31 loc) · 835 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4
env:
global:
- SYMFONY_PHPUNIT_DIR=$HOME/.phpunit-bridge
matrix:
fast_finish: true
include:
- php: 7.1
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 7.4
env: STABILITY=dev
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
- $HOME/.phpunit-bridge
before_install:
- if [[ -v $STABILITY ]]; then composer config minimum-stability $STABILITY; fi;
- if [[ -v $DEPENDENCIES ]]; then composer require --no-update $DEPENDENCIES; fi;
- echo "memory_limit=2G" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
install:
- composer update --prefer-dist --no-interaction $COMPOSER_FLAGS
- vendor/bin/simple-phpunit install
script:
- composer validate --strict --no-check-lock
- vendor/bin/simple-phpunit -v