go-broker-test/.gitlab-ci.yml
2025-05-05 23:32:53 +00:00

19 lines
224 B
YAML

stages:
- vet
- test
variables:
CGO_ENABLED: "1"
vet:
stage: vet
image: golang:1.24-alpine
script:
- go vet ./...
test:
stage: test
image: golang:1.24-alpine
script:
- go test -race -cover ./...