2
2
mirror of https://github.com/octoleo/restic.git synced 2024-12-02 01:48:30 +00:00
restic/vendor/github.com/restic/chunker/.travis.yml
2017-10-22 10:07:36 +02:00

24 lines
387 B
YAML

language: go
sudo: false
go:
- 1.6.4
- 1.7.4
- tip
os:
- linux
- osx
install:
- go get -t ./...
- go get -u github.com/golang/lint/golint
- go get -u golang.org/x/tools/cmd/goimports
script:
- go vet ./...
- go test -v -cpu=2 ./...
- go test -v -cpu=1,2,4 -short -race ./...
- diff -au <(goimports -d .) <(printf "")
- diff -au <(golint ./...) <(printf "")