mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-05-08 04:20:59 -05:00
18 lines
275 B
YAML
18 lines
275 B
YAML
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 ./...
|