summary refs log tree commit diff stats
path: root/build
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2020-04-15 20:28:29 +0530
committerAndinus <andinus@nand.sh>2020-04-15 20:28:29 +0530
commit11e2e11928caa4129bc43b051271f8bccefa56e4 (patch)
tree8ec59e300c9091cce8de5fd0ea65eb0b3e659c95 /build
parent26f5e1863fff58c465507326f3a3255088bd72d7 (diff)
downloadlynx-11e2e11928caa4129bc43b051271f8bccefa56e4.tar.gz
Add drone ci config
Diffstat (limited to 'build')
-rw-r--r--build/ci/drone.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/build/ci/drone.yml b/build/ci/drone.yml
new file mode 100644
index 0000000..32e778e
--- /dev/null
+++ b/build/ci/drone.yml
@@ -0,0 +1,14 @@
+---
+kind: pipeline
+name: testing
+
+steps:
+- name: vet
+  image: golang:1.13
+  commands:
+    - go vet ./...
+
+- name: test
+  image: golang:1.13
+  commands:
+    - go test -v ./...