mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 22:26:30 +00:00
fb3d2ff6fe
* Introduce `dep`, the dependency vendoring tool. Use commits from `go-ethereum@release/1.7` for most of the dependencies. * Update dependencies.
29 lines
359 B
YAML
29 lines
359 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.7.5
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
matrix:
|
|
include:
|
|
- os: osx
|
|
go: 1.7.5
|
|
env:
|
|
- GOFLAGS="-tags kqueue"
|
|
|
|
env:
|
|
global:
|
|
- GOBIN=$HOME/bin
|
|
- PATH=$HOME/bin:$PATH
|
|
|
|
install:
|
|
- go get -t -v ./...
|
|
|
|
script:
|
|
- "(go version | grep -q 1.4) || go tool vet -all ."
|
|
- go install $GOFLAGS ./...
|
|
- go test -v -race $GOFLAGS ./...
|