1
0
Fork 0
telegram/.drone.yml

32 lines
476 B
YAML
Raw Normal View History

---
kind: pipeline
2021-08-05 10:55:07 +00:00
type: docker
name: default
platform:
os: linux
arch: amd64
steps:
2021-08-05 10:55:07 +00:00
- name: test
image: golang
commands:
- go test -v -cover -race ./...
volumes:
- name: deps
path: /go
- name: lint
image: golang
commands:
- wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.41.1
- ./bin/golangci-lint run
failure: ignore
volumes:
- name: deps
2021-08-05 10:55:07 +00:00
path: /go
volumes:
- name: deps
temp: {}