gf/.travis.yml

34 lines
343 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:
2019-02-02 16:20:36 +08:00
- GO111MODULE=on
2018-12-17 13:57:15 +08:00
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 13:24:53 +08:00
2018-12-17 13:02:18 +08:00
script:
2019-02-02 16:54:04 +08:00
- cd g
2019-01-17 16:37:26 +08:00
- GOARCH=386 go test -v ./...
2019-01-17 16:06:56 +08:00
- GOARCH=amd64 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