pomerium/.travis.yml
Bobby DeSimone f50ed074b1
Remove unused test files.
Fix build at golang tip.
2019-01-15 15:47:28 -08:00

18 lines
394 B
YAML

---
language: go
go:
- 1.x
- tip
matrix:
allow_failures:
- go: tip
fast_finish: true
install:
- go get -u golang.org/x/lint/golint
- go get honnef.co/go/tools/cmd/staticcheck
script:
- env GO111MODULE=on make all
- env GO111MODULE=on make cover
- env GO111MODULE=on make release
after_success:
- bash <(curl -s https://codecov.io/bash)