PHP Classes

File: .travis.yml

Recommend this page to a friend!
  Classes of Johnny Mast   Redbox PHP Distance   .travis.yml   Download  
File: .travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Redbox PHP Distance
Compute the distance between locations or zipcodes
Author: By
Last change: Switched to Ubuntu trusty.
Date: 6 years ago
Size: 599 bytes
 

Contents

Class file image Download
language: php sudo: false dist: trusty php: - 5.4 - 5.5 - 5.6 - 7 - 7.1 - 7.2 - hhvm before_install: - php /home/travis/.phpenv/versions/hhvm/bin/composer self-update before_script: - composer install script: - if [ "$TRAVIS_PHP_VERSION" == 7 ]; then vendor/bin/phpunit; fi - if [ "$TRAVIS_PHP_VERSION" != 7 ]; then vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover; fi after_script: - wget https://scrutinizer-ci.com/ocular.phar - if [ "$TRAVIS_PHP_VERSION" != 7 ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi