mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-11-23 12:40:19 +01:00
19 lines
340 B
YAML
19 lines
340 B
YAML
language: go
|
|
sudo: false
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
go: 1.7.x
|
|
- os: linux
|
|
go: 1.8
|
|
- os: linux
|
|
go: tip
|
|
|
|
install:
|
|
- echo "This is an override of the default install deps step in travis."
|
|
|
|
script:
|
|
- go build -v .
|
|
- go vet $(go list ./... | grep -v vendor)
|
|
- go test $(go list ./... | grep -v vendor)
|