mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2024-11-24 08:52:25 +02:00
17 lines
354 B
YAML
17 lines
354 B
YAML
language: go
|
|
go:
|
|
- 1.11.x
|
|
- 1.12.x
|
|
install:
|
|
# Fetch dependencies
|
|
- wget -O dep https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64
|
|
- chmod +x dep
|
|
- mv dep $GOPATH/bin/dep
|
|
- go get github.com/alecthomas/gometalinter
|
|
- gometalinter --install
|
|
script:
|
|
- ./configure && make test
|
|
sudo: false
|
|
notifications:
|
|
email: false
|