mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2025-01-15 21:20:19 +01:00
16 lines
253 B
YAML
16 lines
253 B
YAML
|
# Allow Travis to use container based infrastructure
|
||
|
sudo: false
|
||
|
language: go
|
||
|
|
||
|
go:
|
||
|
- 1.9.x
|
||
|
- 1.10.x
|
||
|
|
||
|
install:
|
||
|
- go get -u golang.org/x/net/websocket
|
||
|
- go get -u github.com/golang/lint/golint
|
||
|
|
||
|
script:
|
||
|
- golint ./...
|
||
|
- go test -v ./... --race
|