workon/.drone.yml

12 lines
152 B
YAML
Raw Normal View History

2022-06-30 18:08:27 -04:00
---
kind: pipeline
type: docker
2022-06-30 19:57:14 -04:00
name: default
2022-06-30 18:08:27 -04:00
steps:
2022-06-30 19:57:14 -04:00
- name: tests
image: golang:1.17
2022-06-30 18:08:27 -04:00
commands:
2022-06-30 19:57:14 -04:00
- go build -v
- go test -v ./...