Cloudreve/.travis.yml

10 lines
183 B
YAML
Raw Normal View History

2019-11-07 16:04:42 +08:00
language: go
go:
- 1.13.x
git:
depth: 1
2019-11-07 16:19:29 +08:00
script:
2019-12-03 14:24:56 +08:00
- go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
2019-12-03 14:20:23 +08:00
after_success:
2019-12-03 14:34:25 +08:00
- bash <(curl -s https://codecov.io/bash)