added automated testing with drone

This commit is contained in:
BroodjeAap 2022-07-27 16:47:15 +00:00
parent a51a1884f1
commit 2cf880ed88

14
.drone.yaml Normal file
View file

@ -0,0 +1,14 @@
kind: pipeline
type: kubernetes
name: default
steps:
- name: test
image: golang:alpine
commands:
- go build
- go test
trigger:
branch:
- master
event:
- push