yanic/.travis.yml

17 lines
479 B
YAML
Raw Normal View History

2016-03-20 11:34:58 +00:00
language: go
go:
2018-01-13 14:53:08 +00:00
- 1.9.x
2018-02-19 22:27:38 +00:00
- 1.10.x
2016-03-20 11:34:58 +00:00
install:
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- dep ensure
2018-01-13 15:52:55 +00:00
- go get github.com/client9/misspell/cmd/misspell
2016-03-20 11:54:40 +00:00
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
script:
- ./.test-coverage travis-ci
2018-05-13 20:18:20 +00:00
- ./.test-testfiles
2018-01-13 15:46:37 +00:00
- ./.travis.gofmt.sh
2018-05-13 19:07:48 +00:00
- find . -type f -name '*.go' | grep -v '^./vendor/' | xargs misspell -error
2017-09-17 01:26:19 +00:00
- go install github.com/FreifunkBremen/yanic