mirror of
https://codeberg.org/icewind/SearchDAV.git
synced 2026-08-02 12:14:54 +02:00
19 lines
323 B
YAML
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)
|