PHP Classes

File: .travis.yml

Recommend this page to a friend!
  Classes of Francesco Danti   PHP Sun Position Calculator   .travis.yml   Download  
File: .travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Sun Position Calculator
Calculate Sun position astronomical distance
Author: By
Last change: Merge branch 'upgrade-to-unit-8' of https://github.com/abbadon1334/sun-position-spa-php
upgrade to phpunit8
remove php 7.4 travis

i tried ;)
update travis
Date: 4 years ago
Size: 875 bytes
 

Contents

Class file image Download
language: php php: - 7.2 - 7.3 before_script: - curl -s http://getcomposer.org/installer | php - php composer.phar install -n - composer require satooshi/php-coveralls:~1.0@stable # Require phpCoveralls - mkdir -p coverage/xml # Create a folder to store clover files #1 - mkdir -p build/logs # Create a folder to store clover files #2 - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - chmod +x ./cc-test-reporter - ./cc-test-reporter before-build script: - php vendor/bin/phpunit --coverage-clover build/logs/clover.xml after_script: - php vendor/bin/codacycoverage clover build/logs/clover.xml - sh -c 'if( [ "$TRAVIS_PHP_VERSION" != "hhvm" ] ); then php vendor/bin/coveralls -v; fi;' - ./cc-test-reporter after-build --coverage-input-type clover --exit-code $TRAVIS_TEST_RESULT