2018-12-05 00:27:42 -08:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
|
2019-01-06 18:58:27 -08:00
|
|
|
# Install go module dependencies.
|
|
|
|
|
go mod download
|
2018-12-05 00:53:16 -08:00
|
|
|
|
2018-12-05 00:27:42 -08:00
|
|
|
# Install golangci-lint
|
|
|
|
|
golangci_lint_version='v1.12.3'
|
|
|
|
|
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $GOPATH/bin ${golangci_lint_version}
|
2018-12-31 20:25:29 -08:00
|
|
|
|
|
|
|
|
# embedmd required for documentation generation
|
|
|
|
|
go get -u github.com/campoy/embedmd
|
2019-01-02 20:41:59 -08:00
|
|
|
|
|
|
|
|
# covertool for merging coverage reports
|
|
|
|
|
go get -u github.com/dlespiau/covertool
|