Add boilerplate code, Docker environment, Makefile etc.
This commit is contained in:
parent
1e9d351173
commit
114a67dbe4
21 changed files with 3766 additions and 0 deletions
25
.drone.yml
Normal file
25
.drone.yml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
---
|
||||
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
|
||||
|
||||
- name: run unit tests
|
||||
image: php:7.3
|
||||
commands:
|
||||
- vendor/bin/phpunit -c phpunit.xml
|
||||
|
||||
volumes:
|
||||
- name: composer-cache
|
||||
host:
|
||||
path: /tmp/drone/composer-cache
|
||||
Loading…
Add table
Add a link
Reference in a new issue