env:
global:
- CC_TEST_REPORTER_ID=[YOUR_TEST_REPORTER_ID_HERE]
- 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.0
- 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
|