13 lines
282 B
YAML
13 lines
282 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: test
|
|
|
|
steps:
|
|
- name: test
|
|
image: fat0troll/tdlib-golangci
|
|
commands:
|
|
- go -mod=vendor test -test.v -cover `go list ./... | grep -v examples | grep -v internal`
|
|
- name: lint
|
|
image: fat0troll/tdlib-golangci
|
|
commands:
|
|
- golangci-lint -v run |