image: golang:1.24 stages: - test go-vet: stage: test script: go vet ./... go-fmt: stage: test script: test -z $(go fmt ./...) go-test: stage: test script: go test -race ./...