hslam_shm/.travis.yml

12 lines
221 B
YAML
Raw Normal View History

2020-11-26 20:22:54 +08:00
language: go
os:
- linux
go:
- 1.13
install:
- go get -t -v -d ./...
script:
- go test -v .
- go test -race -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)