2017-05-17 16:22:58 +02:00
|
|
|
language: go
|
|
|
|
go:
|
|
|
|
- tip
|
|
|
|
install:
|
2018-02-07 15:45:41 +01:00
|
|
|
- go get -t dev.sum7.eu/genofire/golang-lib/...
|
2018-08-24 01:21:35 +02:00
|
|
|
- go get github.com/mattn/goveralls
|
|
|
|
- go get golang.org/x/tools/cmd/cover
|
|
|
|
- go get github.com/client9/misspell/cmd/misspell
|
|
|
|
script:
|
|
|
|
- cd $GOPATH/src/dev.sum7.eu/genofire/golang-lib
|
|
|
|
# - go install # Library does not need to build
|
|
|
|
- ./contrib/ci/check-coverage travis-ci
|
|
|
|
- ./contrib/ci/check-testfiles
|
|
|
|
- ./contrib/ci/check-gofmt
|
|
|
|
- misspell -error .
|
|
|
|
- go test -race ./...
|