1
0
mirror of https://github.com/restic/restic.git synced 2024-06-29 08:10:52 +02:00
restic/vendor/github.com/russross/blackfriday/.travis.yml

18 lines
398 B
YAML
Raw Normal View History

2017-09-13 14:09:48 +02:00
sudo: false
language: go
go:
2019-01-27 21:07:57 +01:00
- "1.9.x"
- "1.10.x"
2017-09-13 14:09:48 +02:00
- tip
matrix:
2019-01-27 21:07:57 +01:00
fast_finish: true
2017-09-13 14:09:48 +02:00
allow_failures:
- go: tip
install:
2017-09-13 14:09:48 +02: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).
script:
2017-09-13 14:09:48 +02:00
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d -s .)
- go tool vet .
- go test -v -race ./...