mirror of
https://github.com/joohoi/acme-dns.git
synced 2025-01-03 13:30:08 +07:00
16 lines
428 B
YAML
16 lines
428 B
YAML
language: go
|
|
go:
|
|
- 1.7
|
|
env:
|
|
- "PATH=/home/travis/gopath/bin:$PATH"
|
|
before_install:
|
|
- go get -u github.com/kardianos/govendor
|
|
- go get github.com/golang/lint/golint
|
|
- go get github.com/mattn/goveralls
|
|
- govendor sync
|
|
script:
|
|
- go vet
|
|
- golint -set_exit_status
|
|
- go test -race -v -tags test -covermode=atomic -coverprofile=profile.cov
|
|
- $HOME/gopath/bin/goveralls -coverprofile=profile.cov -service=travis-ci
|