blob: b16a0fe7ee87cb27d9c9910e06ee9919bff9366e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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 ./...
|