Cloak/.travis.yml

11 lines
167 B
YAML
Raw Normal View History

2020-04-11 21:46:57 +00:00
language: go
go:
- "1.14"
script:
2020-04-11 21:52:29 +00:00
- go test -race -coverprofile=coverage.txt -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)