mirror of
https://github.com/joohoi/acme-dns.git
synced 2024-12-22 21:33:51 +07:00
14 lines
300 B
YAML
14 lines
300 B
YAML
language: go
|
|
go:
|
|
- 1.13
|
|
env:
|
|
- "PATH=/home/travis/gopath/bin:$PATH"
|
|
before_install:
|
|
- go get golang.org/x/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
|