Skip to content

Commit

Permalink
[added]
Browse files Browse the repository at this point in the history
- travis configuration
  • Loading branch information
dryize committed Mar 17, 2020
1 parent c39d35d commit 309f6b2
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .travis.yml
@@ -0,0 +1,20 @@
language: php

matrix:
include:
- php: 7.1
dist: bionic
env: COMPOSER_OPTS=""
- php: 7.2
dist: bionic
env: COMPOSER_OPTS=""

install:
- travis_retry composer update --prefer-dist $COMPOSER_OPTS

script:
- vendor/bin/phpunit --exclude-group integration --coverage-text --coverage-clover coverage.xml

after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.xml

0 comments on commit 309f6b2

Please sign in to comment.