gf/.travis.yml

35 lines
425 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:
2018-12-17 13:57:15 +08:00
- GITEE_GF=$GOPATH/src/gitee.com/johng/gf GO111MODULE=on
services:
- mysql
2018-12-17 13:24:53 +08:00
before_install:
2018-12-17 13:50:17 +08:00
- pwd
install:
2018-12-17 13:57:15 +08:00
- pwd
2018-12-17 14:01:43 +08:00
- mkdir -p $GITEE_GF
2018-12-17 13:46:06 +08:00
- 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 14:01:43 +08:00
# - cd g && go test -v ./...
- cd g && go test -v ./... -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