mirror of https://github.com/restic/restic.git
23 lines
320 B
YAML
23 lines
320 B
YAML
|
language: go
|
||
|
sudo: false
|
||
|
|
||
|
go:
|
||
|
- 1.8
|
||
|
- tip
|
||
|
|
||
|
os:
|
||
|
- linux
|
||
|
- osx
|
||
|
|
||
|
install:
|
||
|
- go version
|
||
|
- export GOBIN="$GOPATH/bin"
|
||
|
- export PATH="$PATH:$GOBIN"
|
||
|
- go get golang.org/x/tools/cmd/goimports
|
||
|
- go build
|
||
|
|
||
|
script:
|
||
|
- go vet
|
||
|
- go test -v -race
|
||
|
- diff <(GOPATH="$PWD:$PWD/vendor" goimports -d .) <(printf "")
|