2
0
mirror of https://github.com/42wim/matterbridge synced 2024-11-11 01:10:38 +00:00
matterbridge/vendor/github.com/dustin/go-humanize/.travis.yml

22 lines
482 B
YAML
Raw Normal View History

2021-10-16 21:11:32 +00:00
sudo: false
language: go
go_import_path: github.com/dustin/go-humanize
2021-10-16 21:11:32 +00:00
go:
- 1.13.x
- 1.14.x
- 1.15.x
- 1.16.x
- stable
2021-10-16 21:11:32 +00:00
- master
matrix:
allow_failures:
- go: master
fast_finish: true
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:
- diff -u <(echo -n) <(gofmt -d -s .)
- go vet .
- go install -v -race ./...
2021-10-16 21:11:32 +00:00
- go test -v -race ./...