summaryrefslogtreecommitdiffstats
path: root/vendor/gitea.com/lunny/levelqueue/.drone.yml
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gitea.com/lunny/levelqueue/.drone.yml')
-rw-r--r--vendor/gitea.com/lunny/levelqueue/.drone.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/vendor/gitea.com/lunny/levelqueue/.drone.yml b/vendor/gitea.com/lunny/levelqueue/.drone.yml
new file mode 100644
index 0000000000..883b79699c
--- /dev/null
+++ b/vendor/gitea.com/lunny/levelqueue/.drone.yml
@@ -0,0 +1,23 @@
+---
+kind: pipeline
+name: test
+
+workspace:
+ base: /go
+ path: src/gitea.com/lunny/levelqueue
+
+steps:
+- name: test
+ pull: default
+ image: golang:1.13
+ commands:
+ - go get -t -d -v ./...
+ - go build -v
+ - go test -v -race -coverprofile=coverage.txt -covermode=atomic
+ environment:
+ GO111MODULE: "on"
+ GOPROXY: https://goproxy.cn
+ when:
+ event:
+ - push
+ - pull_request \ No newline at end of file