2018-11-28 08:40:04 +05:00
|
|
|
image: golang:1.11.1
|
|
|
|
|
|
|
|
stages:
|
|
|
|
- test
|
|
|
|
|
|
|
|
before_script:
|
|
|
|
- mkdir -p ${GOPATH}/src/gitlab.com/pztrn/
|
|
|
|
- ln -s $CI_PROJECT_DIR ${GOPATH}/src/gitlab.com/pztrn/flagger
|
|
|
|
- cd ${GOPATH}/src/gitlab.com/pztrn/flagger
|
|
|
|
|
|
|
|
test:
|
|
|
|
stage: test
|
2018-11-28 08:44:28 +05:00
|
|
|
tags:
|
|
|
|
- docker
|
2018-11-28 08:40:04 +05:00
|
|
|
script:
|
|
|
|
- pwd
|
|
|
|
- go test -test.v -cover ./...
|