Cloak/.travis.yml

11 lines
183 B
YAML
Raw Normal View History

2020-04-11 21:46:57 +00:00
language: go
go:
- "1.14"
script:
2020-04-14 13:13:42 +00:00
- go test -race -coverprofile=coverage.txt -coverpkg=./... -covermode=atomic ./...
2020-04-11 21:46:57 +00:00
after_success:
2020-04-11 21:48:16 +00:00
- bash <(curl -s https://codecov.io/bash)