micro/.drone.yml

10 lines
138 B
YAML
Raw Normal View History

2023-03-07 07:17:18 +00:00
kind: pipeline
type: docker
2023-03-07 16:27:57 +00:00
name: mservice
2023-03-07 07:17:18 +00:00
steps:
2023-03-07 16:24:57 +00:00
- name: build
image: golang:1.18.0
commands:
- go get ./...
2023-03-07 16:27:57 +00:00
- go test ./...