daikon-cqrs/data-structure

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
language: php

php:
  - 8.0

os: linux
dist: bionic

env:
  global:
    CC_TEST_REPORTER_ID=e17c572b0396e6e395b1afe3c2c028e46c8dda20a6f50ade90441200a0b7cd6e

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)