PHP Classes

File: .travis.yml

Recommend this page to a friend!
  Classes of Johnny Mast   PHP Filters and Actions   .travis.yml   Download  
File: .travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Filters and Actions
Listen to events and execute registered actions
Author: By
Last change:
Date: 6 years ago
Size: 595 bytes
 

Contents

Class file image Download
language: php sudo: false php: - 5.6 - 7 - 7.1 - hhvm env: - COMPOSER_OPTS="" # - COMPOSER_OPTS="--prefer-lowest" before_script: - composer self-update - composer update script: - if [ "$TRAVIS_PHP_VERSION" == 7 ]; then vendor/bin/phpunit -d -q=brownfox; fi - if [ "$TRAVIS_PHP_VERSION" != 7 ]; then vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover -d -q=brownfox; 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