about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2019-08-30 14:57:12 +0200
committerEmile <hanemile@protonmail.com>2019-08-30 14:57:12 +0200
commitba8d127a0349362c9f0badde81a10dbd1cfcb80c (patch)
treecbdee5dccc88a44bbd70c3c13efd5d0e8fc32638
parent26de707af673c99eafbe00584f1ac5a29757f6d3 (diff)
added the drone file
-rw-r--r--.drone.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
new file mode 100644
index 0000000..13501f2
--- /dev/null
+++ b/.drone.yml
@@ -0,0 +1,23 @@
+
+kind: pipeline
+name: default
+
+platform:
+    os: linux
+    arch: amd64
+
+steps:
+- name: test
+  image: golang:latest
+  commands:
+  - go test -v .
+
+- name: benchmark 
+  image: golang:latest
+  commands:
+  - go test -bench .
+
+- name: vet 
+  image: golang:latest
+  commands:
+  - go vet .