.travis.yml
language: php
php:
- '7.2'
- '7.3'
- '7.4'
before_script:
- 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
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source
script:
# Fail the Travis CI build on the first error.
- set -e
- mkdir -p build/logs
# I really don't believe in the formatting of closures in PSR12.
# - php vendor/bin/phpcs --standard=PSR12 src
- php vendor/bin/phpcs --standard=PSR1 tests
- vendor/bin/phpstan analyze --level max src
- vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml
after_script:
- if [[ ! -z "$CC_TEST_REPORTER_ID" ]]; then ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT; fi