Files
tss-lib/.gitlab-ci.yml
Ford Betelgeuse 68aae4e12d add ci test
2020-11-18 14:34:08 +11:00

30 lines
846 B
YAML

image: golang:latest
variables:
# Please edit to your GitLab project
REPO_NAME: gitlab.com/thorchaintss/tss-lib
# The problem is that to be able to use go get, one needs to put
# the repository in the $GOPATH. So for example if your gitlab domain
# is gitlab.com, and that your repository is namespace/project, and
# the default GOPATH being /go, then you'd need to have your
# repository in /go/src/gitlab.com/namespace/project
# Thus, making a symbolic link corrects this.
before_script:
- mkdir -p $GOPATH/src/$(dirname $REPO_NAME)
- ln -svf $CI_PROJECT_DIR $GOPATH/src/$REPO_NAME
- cd $GOPATH/src/$REPO_NAME
stages:
- test
unit_tests:
stage: test
coverage: '/total:\s+\(statements\)\s+(\d+.\d+\%)/'
script:
- go test -timeout 60m -race -v -coverprofile=coverage.out ./...
- go tool cover -func=coverage.out