cview/.gitlab-ci.yml

21 lines
208 B
YAML

image: golang:latest
stages:
- validate
- build
fmt:
stage: validate
script:
- make check-fmt
vet:
stage: validate
script:
- make vet
test:
stage: validate
script:
- make test