forked from egeloen/IvoryCKEditorBundle
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
40 lines (32 loc) · 866 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
40
language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
dist: trusty
branches:
only: master
env:
global:
- COMPOSER_PREFER_LOWEST=false
- SYMFONY_DEPRECATIONS_HELPER=strict
- SYMFONY_VERSION=3.4.*
install: travis/install.sh
script:
- vendor/bin/phpunit --coverage-clover build/clover.xml
- composer remove -n --dev "sensio/distribution-bundle"
- vendor/bin/phpunit
after_success:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover build/clover.xml
matrix:
include:
- php: 5.6
env: SYMFONY_VERSION=2.7.* COMPOSER_PREFER_LOWEST=true
- php: 5.6
env: SYMFONY_VERSION=2.8.* COMPOSER_PREFER_LOWEST=true
- php: 5.6
env: SYMFONY_VERSION=3.3.*
- php: 7.1
env: SYMFONY_VERSION=4.0.*