language: go go: - tip install: - make get-deps - go get github.com/campoy/embedmd - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.23.6 script: - make lint-check - make docs-check - make check env: - GO15VENDOREXPERIMENT=1 PGSTORE_TEST_CONN="postgres://postgres@127.0.0.1/test?sslmode=disable" before_script: - psql -c 'create database test;' -U postgres addons: postgresql: "9.4" sudo: false