-
Christophe de Vienne authoredChristophe de Vienne authored
.gitlab-ci.yml 311 B
---
image: quay.orus.io/docker_mirror/golang:1.21.9-bookworm
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 .