blob: baa40d78797e6470a404b4e688bde24bb6b337ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
image: golang:alpine
stages:
- build
- test
go_build:
stage: build
variables:
GOOS: linux
GOARCH: amd64
CGO_ENABLED: 0
before_script:
- apk add --no-cache git
script:
- go install github.com/magefile/mage@latest
- mage build
go_test:
stage: test
before_script:
- apk add --no-cache git
script:
- go install github.com/magefile/mage@latest
- mage test
|