aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: c64b17284e758f6d7a6ffbb589a38c5ad969ad07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
image: golang:1.19

stages:
  - test

go-fmt:
  stage: test
  script: test -z $(go fmt ./...)

go-vet:
  stage: test
  script: go vet ./...

go-test:
  stage: test
  script: go test -race ./...