Files
ordoor/vendor/github.com/go-gl/mathgl/.travis.yml
2018-03-18 05:53:01 +00:00

18 lines
394 B
YAML

sudo: false
language: go
go:
- 1.10.0
- 1.6.2
- tip
matrix:
allow_failures:
- go: tip
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:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d -s .)
- go tool vet .
- go test -v -race ./...