gf/.travis.yml

32 lines
411 B
YAML
Raw Normal View History

2018-12-17 13:02:18 +08:00
language: go
go:
- "1.11.x"
branches:
only:
- master
2018-12-17 13:02:55 +08:00
- develop
2018-12-17 13:02:18 +08:00
2018-12-17 13:46:06 +08:00
env:
- GITEE_GF=$GOPATH/src/gitee.com/johng/gf
2018-12-17 13:50:17 +08:00
- GO111MODULE=on
2018-12-17 13:24:53 +08:00
before_install:
2018-12-17 13:50:17 +08:00
- pwd
install:
2018-12-17 13:46:06 +08:00
- mkdir -p $GITEE_GF
- cp * $GITEE_GF -R
- cd $GITEE_GF
2018-12-17 13:24:53 +08:00
2018-12-17 13:02:18 +08:00
script:
2018-12-17 13:46:06 +08:00
- cd $GITEE_GF/g && go test -v ./...
- cd $GITEE_GF/g && go test -race -coverprofile=coverage.txt -covermode=atomic
2018-12-17 13:24:53 +08:00
after_success:
2018-12-17 13:46:06 +08:00
- bash <(curl -s https://codecov.io/bash)
2018-12-17 13:02:18 +08:00