We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d4d0ea commit 048dbbeCopy full SHA for 048dbbe
.drone.yml
@@ -0,0 +1,38 @@
1
+---
2
+kind: pipeline
3
+name: testing
4
+
5
+platform:
6
+ os: linux
7
+ arch: amd64
8
9
+steps:
10
+- name: lint
11
+ image: golangci/golangci-lint:v1.41.1
12
+ commands:
13
+ - golangci-lint run -v
14
+ volumes:
15
+ - name: gopath
16
+ path: /go
17
18
+- name: test
19
+ image: golang:1.16
20
21
+ - go test -v -covermode=atomic -coverprofile=coverage.out ./...
22
23
24
25
26
+- name: codecov
27
+ image: robertstettner/drone-codecov
28
+ settings:
29
+ token:
30
+ from_secret: codecov_token
31
32
+services:
33
+- name: nats
34
+ image: nats
35
36
+volumes:
37
+- name: gopath
38
+ temp: {}
0 commit comments