infinito/.travis.yml

23 lines
529 B
YAML
Raw Normal View History

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