gstat/.drone.yml

32 lines
492 B
YAML
Raw Permalink Normal View History

2020-07-24 23:17:34 +02:00
kind: pipeline
name: default
steps:
- name: unit-test
2020-07-24 23:17:34 +02:00
image: golang
volumes:
- name: cache
path: /go
commands:
- go test -coverprofile=coverage.out -covermode=count ./...
- go tool cover -func=coverage.out | grep total
- name: race-test
image: golang
volumes:
- name: cache
2020-07-24 23:17:34 +02:00
path: /go
commands:
- go test -race ./...
2020-07-24 23:17:34 +02:00
- name: build
image: golang
volumes:
- name: deps
path: /go
commands:
- CGO_ENABLED=0 go build
2020-07-24 23:17:34 +02:00
volumes:
- name: cache
2020-07-24 23:17:34 +02:00
temp: {}