1
0
mirror of https://github.com/Luzifer/mondash.git synced 2024-09-20 09:22:58 +00:00
mondash/vendor/github.com/shurcooL/sanitized_anchor_name/.travis.yml

17 lines
387 B
YAML
Raw Normal View History

sudo: false
2016-01-23 12:07:07 +00:00
language: go
go:
- 1.x
- master
matrix:
allow_failures:
- go: master
fast_finish: true
2016-01-23 12:07:07 +00:00
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).
2016-01-23 12:07:07 +00:00
script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d -s .)
- go tool vet .
2016-01-23 12:07:07 +00:00
- go test -v -race ./...