1
0
mirror of https://github.com/taigrr/godns synced 2025-01-18 04:03:25 -08:00
godns/.gitlab-ci.yml
2016-05-11 15:53:52 +08:00

20 lines
232 B
YAML

before_script:
- export GOPATH=$(pwd)
stages:
- build
- test
build-my-project:
image: go:1.6.2
stage: build
script:
- go get
- go build
test-my-project:
image: go:1.6.2
stage: test
script:
- go test