-
Florent Aide authoredFlorent Aide authored
.gitlab-ci.yml 273 B
---
image: golang:1.14
stages:
- test
lint_code:
stage: test
cache:
paths:
- tools/bin
script:
- make lint
tests:
stage: test
variables:
GOPATH: $CI_PROJECT_DIR/.gopath
cache:
paths:
- .gopath/pkg/mod
script:
- go test .