Kylob/SQLite

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
language: php

php:
    - '5.4'
    - '5.5'
    - '5.6'
    - '7.0'
    - nightly
    - hhvm

before_script:
    - composer install --dev
    - if [[ $TRAVIS_PHP_VERSION == 5.4 ]]; then composer require codeclimate/php-test-reporter; fi
    
script:
    - if [[ $TRAVIS_PHP_VERSION == 5.4 ]];
        then phpunit --debug --coverage-text --coverage-clover build/logs/clover.xml;
        else phpunit --debug;
      fi

after_script:
    - if [ $TRAVIS_PHP_VERSION == 5.4 ]; then ./vendor/bin/test-reporter; fi

addons:
    code_climate:
        repo_token: 90ab7590437b3f78e8f1a7b2e651ecaa664043aebf8db82c102bedcd8ed5a641