...
1language: go
2
3go:
4 - tip
5
6install:
7 - make get-deps
8 - go get github.com/campoy/embedmd
9 - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.23.6
10
11script:
12 - make lint-check
13 - make docs-check
14 - make check
15
16env:
17 - GO15VENDOREXPERIMENT=1 PGSTORE_TEST_CONN="postgres://postgres@127.0.0.1/test?sslmode=disable"
18
19before_script:
20 - psql -c 'create database test;' -U postgres
21
22addons:
23 postgresql: "9.4"
24
25sudo: false
View as plain text