mirror of
https://github.com/Luzifer/nginx-sso.git
synced 2024-12-21 05:11:17 +00:00
115182e445
* Define configuration for LDAP module * Implement LDAP auth * Vendor new dependencies * Add documentation for LDAP provider
18 lines
447 B
YAML
18 lines
447 B
YAML
language: go
|
|
go:
|
|
- 1.2
|
|
- 1.3
|
|
- 1.4
|
|
- 1.5
|
|
- 1.6
|
|
- 1.7
|
|
- 1.8
|
|
- tip
|
|
go_import_path: gopkg.in/asn-ber.v1
|
|
install:
|
|
- go list -f '{{range .Imports}}{{.}} {{end}}' ./... | xargs go get -v
|
|
- go list -f '{{range .TestImports}}{{.}} {{end}}' ./... | xargs go get -v
|
|
- go get code.google.com/p/go.tools/cmd/cover || go get golang.org/x/tools/cmd/cover
|
|
- go build -v ./...
|
|
script:
|
|
- go test -v -cover ./...
|