mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 22:26:30 +00:00
b50c46caa8
* Commit initial change for settimeout/setinterval * Add initial tests for jail setTimeout/setInterval * Add ottoext dependency * Add fetch jail test with function * Add dependencies of fetch from ottoext * Refactor with regards to PR review * Refactor with regards to PR review * Fix syntax errors * Fix missing return statement
20 lines
373 B
YAML
20 lines
373 B
YAML
language: go
|
|
|
|
go:
|
|
- master
|
|
- 1.x.x
|
|
- 1.8.x
|
|
- 1.7.x
|
|
- 1.6.x
|
|
- 1.5.x
|
|
|
|
install:
|
|
- go get -t ./...
|
|
- env
|
|
- if [ "${TRAVIS_GO_VERSION%.*}" != "1.5" ]; then go get github.com/golang/lint/golint; fi
|
|
script:
|
|
- go build -x ./...
|
|
- go test -cover ./...
|
|
- go vet ./...
|
|
- if [ "${TRAVIS_GO_VERSION%.*}" != "1.5" ]; then golint .; fi
|