mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 02:16:28 +02:00
18 lines
394 B
YAML
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)
|