Skip to content

Commit

Permalink
Merge 3bfeb47 into e7636dd
Browse files Browse the repository at this point in the history
  • Loading branch information
DerManoMann committed Jan 2, 2020
2 parents e7636dd + 3bfeb47 commit cd3d762
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,19 @@ php:
- nightly

env:
global:
- CODE_COVERAGE=""
matrix:
- PREFER_LOWEST="--prefer-lowest --prefer-stable"
- PREFER_LOWEST=""

jobs:
include:
- php: 7.3
env:
- PREFER_LOWEST=""
- CODE_COVERAGE="--coverage-clover build/logs/clover.xml"

before_install:
- composer self-update

Expand All @@ -25,11 +34,11 @@ install:

script:
- mkdir -p build/logs
- ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
- ./vendor/bin/phpunit $CODE_COVERAGE
- if [[ $TRAVIS_PHP_VERSION < 7.4 ]] ; then composer run-script fix-cs; fi;

after_script:
- if [[ $TRAVIS_PHP_VERSION = 7.3] && [$PREFER_LOWEST = "" ]] ; then php vendor/bin/php-coveralls -v; fi;
- if [[ $CODE_COVERAGE != "" ]]; then php vendor/bin/php-coveralls -v; fi;

matrix:
allow_failures:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Extensions for the Symfony property-info component.

[![Build Status](https://travis-ci.org/DerManoMann/property-info-extras.png)](https://travis-ci.org/DerManoMann/property-info-extras)
[![Coverage Status](https://coveralls.io/repos/github/DerManoMann/property-info-extras/badge.svg)](https://coveralls.io/github/DerManoMann/property-info-extras)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

## Requirements ##
* [PHP 7.1 or higher](http://www.php.net/)
Expand Down

0 comments on commit cd3d762

Please sign in to comment.