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 16:04:43 +08:00

25 lines
345 B
YAML

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