mirror of
https://github.com/joohoi/acme-dns.git
synced 2025-01-07 05:50:43 +07:00
26 lines
518 B
YAML
26 lines
518 B
YAML
## Copyright 2014 Alvaro J. Genial. All rights reserved.
|
|
## Use of this source code is governed by a BSD-style
|
|
## license that can be found in the LICENSE file.
|
|
|
|
language: go
|
|
|
|
go:
|
|
- tip
|
|
- 1.6
|
|
- 1.5
|
|
- 1.4
|
|
- 1.3
|
|
- 1.2
|
|
|
|
before_install:
|
|
# - go get -v golang.org/x/tools/cmd/cover
|
|
# - go get -v golang.org/x/tools/cmd/vet
|
|
# - go get -v github.com/golang/lint/golint
|
|
- export PATH=$PATH:/home/travis/gopath/bin
|
|
|
|
script:
|
|
- go build -v ./...
|
|
- go test -v -cover ./...
|
|
- go vet ./...
|
|
# - golint .
|