mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-11-23 12:40:19 +01:00
20 lines
259 B
YAML
20 lines
259 B
YAML
language: go
|
|
sudo: false
|
|
|
|
os:
|
|
- linux
|
|
|
|
go:
|
|
- 1.10.x
|
|
- 1.11.x
|
|
- 1.12.x
|
|
- tip
|
|
|
|
install:
|
|
- echo "This is an override of the default install deps step in travis."
|
|
|
|
script:
|
|
- go get -t -u -v ./...
|
|
- go build -v .
|
|
- go vet ./...
|
|
- go test ./...
|