mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
e374bb7e2d
* [Vendor] update go-ldap to v3.0.3 * update go-ldap to v3.2.4 Co-authored-by: techknowlogick <techknowlogick@gitea.io>
18 lines
275 B
YAML
Vendored
18 lines
275 B
YAML
Vendored
sudo: false
|
|
|
|
language: go
|
|
|
|
before_script:
|
|
- go get -u golang.org/x/lint/golint
|
|
|
|
go:
|
|
- 1.10.x
|
|
- master
|
|
|
|
script:
|
|
- test -z "$(gofmt -s -l . | tee /dev/stderr)"
|
|
- test -z "$(golint ./... | tee /dev/stderr)"
|
|
- go vet ./...
|
|
- go build -v ./...
|
|
- go test -v ./...
|