19 lines
299 B
YAML
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
|