mirror of
https://github.com/joohoi/acme-dns.git
synced 2024-12-22 22:03:58 +07:00
d1af1d029f
This reverts commit 1c918fcaa4
.
14 lines
304 B
YAML
14 lines
304 B
YAML
language: go
|
|
go:
|
|
- 1.9
|
|
env:
|
|
- "PATH=/home/travis/gopath/bin:$PATH"
|
|
before_install:
|
|
- go get github.com/golang/lint/golint
|
|
- go get github.com/mattn/goveralls
|
|
script:
|
|
- go vet
|
|
- golint -set_exit_status
|
|
- go test -race -v
|
|
- $HOME/gopath/bin/goveralls -ignore main.go -v -service=travis-ci
|