summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 0b3d50d16f2ee6d447d2073b9ab2cb28943069dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---
stages:
  - test

test:
  image: golang:alpine
  stage: test
  script:
    - apk add build-base
    - go test -v ./...
  tags:
    - linux