mail-account-admin/.drone.yml
binaryDiv bf8a87ff30
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
Drone CI: Ignore PHP version from composer image
2022-01-02 03:31:18 +01:00

25 lines
503 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: install dependencies
image: composer
volumes:
- name: composer-cache
path: /tmp/cache
environment:
COMPOSER_CACHE_DIR: /tmp/cache
commands:
- composer install --no-progress --no-interaction --ignore-platform-reqs
- name: run unit tests
image: php:7.4
commands:
- vendor/bin/phpunit -c phpunit.xml
volumes:
- name: composer-cache
host:
path: /tmp/drone/composer-cache