Files
monkey/.drone.yml
Chuck Smith 005f3b6a13
Some checks failed
Test / build (push) Waiting to run
Build / build (push) Has been cancelled
release tool
2024-03-24 12:19:13 -04:00

22 lines
333 B
YAML

kind: pipeline
name: default
steps:
- name: build
image: golang:latest
commands:
- make test
- name: coverage
image: plugins/codecov
settings:
token:
from_secret: codecov-token
- name: notify
image: plugins/webhook
urls:
when:
status:
- success
- failure