mirror of
https://github.com/taigrr/godns
synced 2025-01-18 04:03:25 -08:00
20 lines
232 B
YAML
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
|