tagcmp/.drone.yml

19 lines
299 B
YAML
Raw Permalink Normal View History

2021-10-02 21:21:44 +00:00
---
kind: pipeline
name: coopcloud.tech/tagcmp
steps:
2023-04-14 21:30:03 +00:00
- name: gofmt
image: golang:1.21
2021-10-02 21:21:44 +00:00
commands:
2023-04-14 21:28:52 +00:00
- test -z "$(gofmt -l .)"
2021-10-02 21:21:44 +00:00
2023-04-14 21:30:03 +00:00
- name: go build
image: golang:1.21
2021-10-02 21:21:44 +00:00
commands:
- go build -v .
2021-10-02 21:21:44 +00:00
2023-04-14 21:30:03 +00:00
- name: go test
image: golang:1.21
2021-10-02 21:21:44 +00:00
commands:
- go test . -cover