infinito/.travis.yml

14 lines
493 B
YAML
Raw Normal View History

2018-10-30 18:45:43 +01:00
language: php
git:
submodules: false
before_install:
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
2018-10-30 18:45:43 +01:00
before_script:
2018-10-30 19:14:05 +01:00
- travis_retry cd application && composer self-update
- travis_retry cd application && composer install --no-interaction --prefer-source --dev
2018-10-30 18:45:43 +01:00
script:
2018-10-30 19:01:26 +01:00
- application/vendor/bin/phpunit --coverage-clover=coverage.xml
2018-10-30 18:45:43 +01:00
after_success:
2018-10-30 19:14:05 +01:00
- cd application && bash <(curl -s https://codecov.io/bash)