tusd/.travis.yml

19 lines
281 B
YAML
Raw Normal View History

2015-02-01 14:02:52 +00:00
language: go
go:
- 1.2
- 1.3
- 1.4
- tip
matrix:
allow_failures:
- go: tip
before_install:
- go get golang.org/x/tools/cmd/cover
2015-02-01 14:02:52 +00:00
- go get .
script:
- go test -v -coverprofile=cover.out || go test -v
2015-02-12 15:06:15 +00:00
- go test -v ./filestore -coverprofile=cover.out || go test -v ./filestore