1
0
mirror of https://github.com/danog/blackfriday.git synced 2024-12-02 09:27:49 +01:00
blackfriday/.travis.yml

19 lines
411 B
YAML
Raw Permalink Normal View History

sudo: false
2014-08-29 14:39:26 +02:00
language: go
go:
- "1.9.x"
- "1.10.x"
2018-11-15 21:38:43 +01:00
- "1.11.x"
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
2014-08-29 14:39:26 +02: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).
2014-08-29 14:39:26 +02:00
script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d -s .)
- go tool vet .
- go test -v -race ./...