.travis.yml
language: php
php:
- 8.0
os: linux
dist: bionic
env:
global:
CC_TEST_REPORTER_ID=2d3cf1143f8ce28e34f6ae65c2c0ef6224783306e6796598b7a6b5f082764029
install:
- curl -s http://getcomposer.org/installer | php -- --filename=composer
- chmod +x composer
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > cc-test-reporter
- chmod +x cc-test-reporter
- wget -q https://scrutinizer-ci.com/ocular.phar
- composer install --no-interaction
before_script:
- ./cc-test-reporter before-build
script:
- composer build
after_script:
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
after_success:
- bash <(curl -s https://codecov.io/bash)