fix: better ci stage names [ci skip]

This commit is contained in:
decentral1se 2023-04-14 23:30:03 +02:00
parent fb9cdb51bc
commit 57e8e24f7a
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 3 additions and 3 deletions

View File

@ -2,17 +2,17 @@
kind: pipeline
name: coopcloud.tech/tagcmp
steps:
- name: make check
- name: gofmt
image: golang:1.20
commands:
- test -z "$(gofmt -l .)"
- name: make build
- name: go build
image: golang:1.20
commands:
- go build -v .
- name: make test
- name: go test
image: golang:1.20
commands:
- go test . -cover