Skip to content

Commit 8aa3ced

Browse files
committed
Add .drone.yml
1 parent 15258a9 commit 8aa3ced

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.drone.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
workspace:
2+
base: /go
3+
path: src/github.com/kgantsov/kvgo
4+
5+
pipeline:
6+
tests:
7+
image: golang:latest
8+
commands:
9+
- go get -u github.com/golang/dep/cmd/dep
10+
- dep ensure --vendor-only
11+
- go test ./... -race
12+
when:
13+
event: [ push ]
14+
15+
pipeline:
16+
slack:
17+
image: plugins/slack
18+
channel: dev
19+
secrets: [ slack_webhook ]
20+
when:
21+
status: [ success, failure ]

0 commit comments

Comments
 (0)