kind: pipeline type: docker name: tests workspace: path: /drone/golang-api-skeleton steps: - name: build image: golang:1.15 environment: GOPROXY: "https://proxy.golang.org" commands: - make build - name: unittests image: golang:1.15 commands: - make test - name: lint image: golang:1.15 commands: - make lint