infinito/.travis.yml

19 lines
556 B
YAML
Raw Normal View History

2018-10-30 18:45:43 +01:00
language: php
2018-10-30 19:24:12 +01:00
php:
2018-10-30 19:22:55 +01:00
- 7.2
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 20:02:36 +01:00
- cp phpunit.xml.dist phpunit.xml
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 21:01:37 +01:00
- bin/console doctrine:schema:validate --skip-sync
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)