summary refs log tree commit diff stats
path: root/build/ci
diff options
context:
space:
mode:
Diffstat (limited to 'build/ci')
-rw-r--r--build/ci/drone.yml23
1 files changed, 14 insertions, 9 deletions
diff --git a/build/ci/drone.yml b/build/ci/drone.yml
index a169270..1248b48 100644
--- a/build/ci/drone.yml
+++ b/build/ci/drone.yml
@@ -1,38 +1,43 @@
 ---
 kind: pipeline
-name: go-test
+name: testing
 
 steps:
+- name: vet
+  image: golang:1.13
+  commands:
+    - go vet ./...
+
 - name: test
   image: golang:1.13
   commands:
-  - go test -v ./...
+    - go test -v ./...
 
 ---
 kind: pipeline
-name: go-build
+name: build
 
 steps:
-- name: build-obsd
+- name: openbsd-amd64
   image: golang:1.13
   environment:
     GOARCH: amd64
     GOOS: openbsd
   commands:
-  - go build ./cmd/cetus
+    - go build ./cmd/cetus
 
-- name: build-linux
+- name: linux-amd64
   image: golang:1.13
   environment:
     GOARCH: amd64
     GOOS: linux
   commands:
-  - go build ./cmd/cetus
+    - go build ./cmd/cetus
 
-- name: build-darwin
+- name: darwin-amd64
   image: golang:1.13
   environment:
     GOARCH: amd64
     GOOS: darwin
   commands:
-  - go build ./cmd/cetus
+    - go build ./cmd/cetus
40 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188