Files
tagcmp/.drone.yml
Comrade Renovate Bot eb3e7758d4
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
chore(deps): update golang docker tag to v1.21
2023-08-09 07:10:31 +00:00

19 lines
299 B
YAML

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