x/.drone.yml

11 lines
198 B
YAML
Raw Normal View History

2020-10-12 21:23:54 +00:00
kind: pipeline
name: test-go
steps:
- name: test-go
image: golang
commands:
- go test ./...
- go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.31.0
- golangci-lint run