mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2025-01-15 13:10:18 +01:00
15 lines
253 B
YAML
15 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
|