diff --git a/.drone.yml b/.drone.yml index ad7e144..acaff0e 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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