1
0
mirror of https://github.com/docker/docker-credential-helpers.git synced 2026-06-13 16:01:28 +05:30
Files
docker-credential-helpers/.travis.yml
T
David Calavera 21a3788372 Make travis to download dependencies.
Signed-off-by: David Calavera <david.calavera@gmail.com>
2016-02-08 09:36:30 -08:00

19 lines
345 B
YAML

---
sudo: false
language: go
os:
- osx
notifications:
email: false
go:
- 1.5
install:
- go get -t ./...
- go get github.com/golang/lint/golint
before_script:
- go vet ./...
- test -z "$(golint ./... | tee /dev/stderr)"
- test -z "$(gofmt -s -l . | tee /dev/stderr)"
script:
- go test -v ./...