Files
QSfera/Server/vendor/github.com/go-ldap/ldif/.travis.yml
T
Курнат Андрей 2315f25754 Initial QSfera import
2026-06-07 10:20:04 +03:00

23 lines
568 B
YAML

language: go
go:
- 1.11
- 1.13
- 1.14
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
go_import_path: github.com/go-ldap/ldif
install:
- go get github.com/go-ldap/ldap/v3
- go get code.google.com/p/go.tools/cmd/cover || go get golang.org/x/tools/cmd/cover
- go get golang.org/x/lint/golint || true
- go install golang.org/x/tools/go/analysis/passes/shadow/cmd/shadow
- go build -v ./...
script:
- make test
- make fmt
- make vet
- if [ "${TRAVIS_GO_VERSION}" != "1.6" ]; then make lint; fi