Skip to content

Commit

Permalink
Update CI script.
Browse files Browse the repository at this point in the history
  • Loading branch information
jails committed Aug 5, 2019
1 parent 10e8470 commit 9b0bf3f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Expand Up @@ -2,10 +2,10 @@ sudo: false
language: php

php:
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3

before_script:
- if [[ $TRAVIS_SECURE_ENV_VARS = "true" ]]; then composer config -g github-oauth.github.com $GITHUB_COMPOSER_AUTH; fi
Expand All @@ -15,6 +15,6 @@ before_script:
script: bin/kahlan --coverage=3 --clover=clover.xml

after_success:
- "if [ $(phpenv version-name) = '5.6' ]; then wget https://scrutinizer-ci.com/ocular.phar; fi"
- "if [ $(phpenv version-name) = '5.6' ]; then php ocular.phar code-coverage:upload --format=php-clover 'clover.xml'; fi"
- "if [ $(phpenv version-name) = '7.3' ]; then wget https://scrutinizer-ci.com/ocular.phar; fi"
- "if [ $(phpenv version-name) = '7.3' ]; then php ocular.phar code-coverage:upload --format=php-clover 'clover.xml'; fi"

0 comments on commit 9b0bf3f

Please sign in to comment.