Files
tagcmp/.drone.yml
T
renovate-bot c26951b559
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
chore(deps): update golang docker tag to v1.26
2026-05-15 10:24:03 +00:00

19 lines
299 B
YAML

---
kind: pipeline
name: coopcloud.tech/tagcmp
steps:
- name: gofmt
image: golang:1.26
commands:
- test -z "$(gofmt -l .)"
- name: go build
image: golang:1.26
commands:
- go build -v .
- name: go test
image: golang:1.26
commands:
- go test . -cover