1
0
Fork 0
mirror of https://github.com/vbatts/sl-feeds.git synced 2025-02-20 13:40:01 +00:00
sl-feeds/vendor/github.com/russross/blackfriday/v2/.travis.yml
Vincent Batts 1e64d04b15
go: include the whole vendor directory
Not great, but gcc-go 1.14.4 is not picking up the go.mod file on the
first `go get`

Fixes #16

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2021-02-16 15:32:01 -05:00

17 lines
393 B
YAML

sudo: false
language: go
go:
- "1.10.x"
- "1.11.x"
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
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 ./...