From 2cf880ed889512dae2961cf9b544c034a6fa6e27 Mon Sep 17 00:00:00 2001 From: BroodjeAap Date: Wed, 27 Jul 2022 16:47:15 +0000 Subject: [PATCH] added automated testing with drone --- .drone.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .drone.yaml diff --git a/.drone.yaml b/.drone.yaml new file mode 100644 index 0000000..caed0da --- /dev/null +++ b/.drone.yaml @@ -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 \ No newline at end of file