PHP Classes

File: .travis.yml

Recommend this page to a friend!
  Classes of Sergey Karavay   PHPolyglot   .travis.yml   Download  
File: .travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHPolyglot
Translate, correct spelling and speak a given text
Author: By
Last change:
Date: 6 years ago
Size: 872 bytes
 

Contents

Class file image Download
env: global: - CC_TEST_REPORTER_ID=372f20c656c334dca0149c5f9e7f223ee603444786dd59ae0150270ede9e078f - GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi) language: php sudo: false php: - 7.1 - 7.2 - master before_script: - composer self-update - composer require codeclimate/php-test-reporter --dev - composer install --no-interaction --prefer-source --dev - 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: - vendor/bin/phpunit --configuration phpunit.xml - if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then ./cc-test-reporter after-build --exit-code $? || true $TRAVIS_TEST_RESULT; fi