Ian Fijolek
aeda358a4a
All checks were successful
continuous-integration/drone/push Build is passing
29 lines
565 B
YAML
29 lines
565 B
YAML
---
|
|
kind: pipeline
|
|
name: test
|
|
|
|
workspace:
|
|
base: "/app"
|
|
path: "."
|
|
|
|
steps:
|
|
|
|
- name: test
|
|
image: iamthefij/drone-pre-commit:latest
|
|
commands:
|
|
- pip install docker-compose
|
|
- make all
|
|
|
|
- name: notify
|
|
image: drillster/drone-email
|
|
settings:
|
|
host:
|
|
from_secret: SMTP_HOST # pragma: whitelist secret
|
|
username:
|
|
from_secret: SMTP_USER # pragma: whitelist secret
|
|
password:
|
|
from_secret: SMTP_PASS # pragma: whitelist secret
|
|
from: drone@iamthefij.com
|
|
when:
|
|
status: [changed, failure]
|