Skip to content
Snippets Groups Projects
.gitlab-ci.yml 300 B
Newer Older
Florent Aide's avatar
Florent Aide committed
---

image: quay.orus.io/cc/golang:1.22.4-bullseye

stages:
  - test

lint_code:
  stage: test
  cache:
    paths:
Florent Aide's avatar
Florent Aide committed
      - tools/bin
  script:
    - make lint

tests:
  stage: test
  variables:
    GOPATH: $CI_PROJECT_DIR/.gopath
  cache:
    paths:
Florent Aide's avatar
Florent Aide committed
      - .gopath/pkg/mod