searchdav/.travis.yml

19 lines
323 B
YAML

language: php
php:
- '7.2'
- '7.3'
- '7.4'
cache:
directories:
- $HOME/.composer/cache/files
install:
- composer install --no-interaction
script:
- cd tests
- ../vendor/bin/phpunit --coverage-clover coverage.xml --configuration phpunit.xml
after_success:
- bash <(curl -s https://codecov.io/bash)