yanic/.travis.yml

17 lines
479 B
YAML
Raw Normal View History

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