binctr/.travis.yml
Jess Frazelle 9ff5e389ff update travis
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-03-20 15:04:42 -04:00

32 lines
991 B
YAML

---
language: go
sudo: required
services:
- docker
notifications:
email: true
go:
- 1.x
- tip
env:
global:
- GO15VENDOREXPERIMENT=1
matrix:
allow_failures:
- go: tip
fast_finish: true
install:
- go get github.com/golang/lint/golint
- go get honnef.co/go/tools/cmd/staticcheck
- echo "deb http://archive.ubuntu.com/ubuntu trusty-backports main restricted universe multiverse" | sudo tee /etc/apt/sources.list.d/backports.list
- sudo apt update && sudo apt install -y -t trusty-backports libapparmor-dev libseccomp-dev
script:
- make
- go vet $(go list ./... | grep -v vendor)
- staticcheck $(go list ./... | grep -v vendor)
- test -z "$(golint ./... | grep -v vendor | tee /dev/stderr)"
- test -z "$(gofmt -s -l . | grep -v vendor | grep -v bindata.go | tee /dev/stderr)"
- go test $(go list ./... | grep -v vendor)
- make cover
after_success:
- bash <(curl -s https://codecov.io/bash)