* Simplifying documentation for getting started: Removed outdated information about install Golang on different platforms and instead included a link to the official Golang website which has more up to date information. Instructions for installing docker-compose have also been added. * Added documentation to all exported functions and structs. * Unexported some structures and functions that were needlessly exported. * Adding golang CI default configuration which can be useful while developing and may be turned on later in the CI. * Moving build process in CI to xenial. * Reducing line size. in some files and shadowing in some test cases.
33 lines
580 B
YAML
33 lines
580 B
YAML
sudo: required
|
|
|
|
dist: xenial
|
|
language: go
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- master-v2.0
|
|
- future
|
|
|
|
go:
|
|
- "1.10.x"
|
|
|
|
env:
|
|
global:
|
|
- GO_USR_DIRS=$(go list -f {{.Dir}} ./... | grep -E -v "/gen-go/|/vendor/")
|
|
|
|
services:
|
|
- docker
|
|
|
|
before_install:
|
|
- go get golang.org/x/tools/cmd/goimports
|
|
- test -z "`for d in $GO_USR_DIRS; do goimports -d $d/*.go | tee /dev/stderr; done`"
|
|
|
|
install:
|
|
- docker-compose up -d
|
|
|
|
script:
|
|
- go test -race -coverprofile=coverage.txt -covermode=atomic -v github.com/paypal/gorealis
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|