jsonpath/.drone.yml

24 lines
471 B
YAML
Raw Normal View History

2019-10-19 02:21:05 +04:00
kind: pipeline
type: docker
name: build
steps:
- name: lint
image: golangci/golangci-lint:latest
environment:
CGO_ENABLED: 0
commands:
- golangci-lint run
- name: test-1.13
image: golang:1.13.1-alpine
environment:
CGO_ENABLED: 0
commands:
- go test -cover -test.v .
- name: test-1.12
2019-10-19 02:25:34 +04:00
image: golang:1.12.10
2019-10-19 02:21:05 +04:00
environment:
CGO_ENABLED: 0
GO111MODULE: on
commands:
- go test -cover -test.v .