You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
296 B
YAML
17 lines
296 B
YAML
4 years ago
|
stages:
|
||
|
- analysis
|
||
|
|
||
|
variables:
|
||
|
GOPATH: '/runner-cache/zero'
|
||
|
GOCACHE: '/runner-cache/zero'
|
||
|
GOPROXY: 'https://goproxy.cn,direct'
|
||
|
|
||
|
analysis:
|
||
|
stage: analysis
|
||
|
image: golang
|
||
|
script:
|
||
|
- go version && go env
|
||
|
- go test -short $(go list ./...) | grep -v "no test"
|
||
|
only:
|
||
|
- merge_requests
|