You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
373 B
24 lines
373 B
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
|