mirror of
https://github.com/documize/community.git
synced 2025-08-05 05:25:27 +02:00
Should address edge cases and close #224 -- subject to field testing. Does require the NGINX deployments use the following: proxy_pass <http://documize-url:5001>; proxy_set_header Host $http_host; proxy_set_header X-Forwarded-For $remote_addr;
20 lines
307 B
YAML
20 lines
307 B
YAML
language: go
|
|
sudo: false
|
|
|
|
matrix:
|
|
include:
|
|
- go: 1.4
|
|
- go: 1.5
|
|
- go: 1.6
|
|
- go: 1.7
|
|
- go: 1.8
|
|
- go: tip
|
|
allow_failures:
|
|
- go: tip
|
|
|
|
script:
|
|
- go get -t -v ./...
|
|
- diff -u <(echo -n) <(gofmt -d .)
|
|
- go vet $(go list ./... | grep -v /vendor/)
|
|
- go test -v -race ./...
|
|
|