kawax/laravel-zend-form

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
sudo: false
language: php

jobs:
  include:
    - php: 7.1
    - php: 7.2
    - php: 7.3
    - php: 7.4
    - php: nightly
      env: COMPOSER_OPTION=--ignore-platform-reqs

cache:
  directories:
    - vendor

before_script:
  - travis_retry composer install --no-interaction $COMPOSER_OPTION
  - 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

after_script:
  - ./cc-test-reporter after-build -t clover --exit-code $TRAVIS_TEST_RESULT