restore v 0.2.0
This commit is contained in:
50
.drone.yml
Normal file
50
.drone.yml
Normal file
@@ -0,0 +1,50 @@
|
||||
kind: pipeline
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: test
|
||||
image: golang:1.14.2
|
||||
volumes:
|
||||
- name: deps
|
||||
path: /go/src/mod
|
||||
commands:
|
||||
- go test
|
||||
|
||||
- name: golangci-lint
|
||||
image: golangci/golangci-lint:v1.29
|
||||
commands:
|
||||
- golangci-lint run
|
||||
|
||||
- name: logrus golangci-lint
|
||||
image: golangci/golangci-lint:v1.29
|
||||
commands:
|
||||
- cd logrus
|
||||
- golangci-lint run
|
||||
|
||||
- name: logrus test
|
||||
image: golang:1.14.2
|
||||
volumes:
|
||||
- name: deps
|
||||
path: /go/src/mod
|
||||
commands:
|
||||
- cd logrus
|
||||
- go test
|
||||
|
||||
- name: zap golangci-lint
|
||||
image: golangci/golangci-lint:v1.29
|
||||
commands:
|
||||
- cd zap
|
||||
- golangci-lint run
|
||||
|
||||
- name: zap test
|
||||
image: golang:1.14.2
|
||||
volumes:
|
||||
- name: deps
|
||||
path: /go/src/mod
|
||||
commands:
|
||||
- cd zap
|
||||
- go test
|
||||
|
||||
volumes:
|
||||
- name: deps
|
||||
temp: {}
|
||||
Reference in New Issue
Block a user