1
Fork 0
This repository has been archived on 2022-11-04. You can view files and clone it, but cannot push or open issues/pull-requests.
fwzookeeper_helper/.drone.yml

17 lines
350 B
YAML
Raw Normal View History

2019-10-08 05:45:02 +04:00
kind: pipeline
type: docker
name: test
steps:
- name: test
image: fat0troll/tdlib-golangci
commands:
2019-10-08 05:56:10 +04:00
- go test -test.v -cover `go list ./... | grep -v examples | grep -v internal`
environment:
2019-10-08 05:59:48 +04:00
GOFLAGS: -mod=vendor
2019-10-08 05:45:02 +04:00
- name: lint
image: fat0troll/tdlib-golangci
commands:
2019-10-08 05:56:10 +04:00
- golangci-lint -v run
environment:
2019-10-08 05:59:48 +04:00
GOFLAGS: -mod=vendor