summary refs log tree commit diff stats
path: root/build
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2020-04-06 12:36:14 +0530
committerAndinus <andinus@nand.sh>2020-04-06 12:36:14 +0530
commit09e64a527745d86a36aa45fb5ccc1f27ac25f04d (patch)
treebc50c42fc00a634d27eb8bedf023385417c10998 /build
downloadlynx-09e64a527745d86a36aa45fb5ccc1f27ac25f04d.tar.gz
Initial Commit v0.1.0
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 ./...