k3s/vendor/github.com/russross/blackfriday/.travis.yml

18 lines
398 B
YAML
Raw Normal View History

2019-09-27 21:51:53 +00:00
sudo: false
2019-01-12 04:58:27 +00:00
language: go
go:
2019-09-27 21:51:53 +00:00
- "1.9.x"
- "1.10.x"
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
2019-01-12 04:58:27 +00:00
install:
2019-09-27 21:51:53 +00:00
- # 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).
2019-01-12 04:58:27 +00:00
script:
2019-09-27 21:51:53 +00:00
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d -s .)
- go tool vet .
- go test -v -race ./...