vendor/github.com/shurcooL/sanitized_anchor_name/.travis.yml
changeset 242 2a9ec03fe5a1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/vendor/github.com/shurcooL/sanitized_anchor_name/.travis.yml	Sat Sep 29 18:09:54 2018 +0200
@@ -0,0 +1,16 @@
+sudo: false
+language: go
+go:
+  - 1.x
+  - master
+matrix:
+  allow_failures:
+    - go: master
+  fast_finish: true
+install:
+  - # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step).
+script:
+  - go get -t -v ./...
+  - diff -u <(echo -n) <(gofmt -d -s .)
+  - go tool vet .
+  - go test -v -race ./...