summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 9cec69eb4fc7aba4ecba51fd32eb3855852d4554 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
image: golang:alpine

before_script:
  - apk add --no-cache git
  - go install github.com/magefile/mage@latest

stages:
  - build
  - test

go_build:
  stage: build
  variables:
    GOOS: linux
    GOARCH: amd64
    CGO_ENABLED: 0
  script:
    - mage build

go_test:
  stage: test
  script:
    - mage test