Skip to content

Commit

Permalink
Updated to 1.0.8 version
Browse files Browse the repository at this point in the history
  • Loading branch information
josantonius committed Oct 30, 2017
1 parent 0003100 commit ba22195
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,42 @@ sudo: false

dist: trusty

branches:
only:
- master

git:
depth: 5

php:
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm
- nightly

matrix:
fast_finish: true
include:
- php: 7.1
env: PHPCS=PSR2

allow_failures:
- php: nightly

before_script:
- composer self-update
- composer install
- export PATH="./vendor/bin:$PATH"
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev

script:
- composer test
- phpunit
- |
if [[ "$PHPCS" ]] ; then
phpcs --standard=phpcs.ruleset.xml $(find . -name '*.php')
fi
phpunit --coverage-clover=coverage.xml
after_success:
- bash <(curl -s https://codecov.io/bash)

0 comments on commit ba22195

Please sign in to comment.