Skip to content

Commit

Permalink
Merge branch 'imp/arch' of https://github.com/renproject/lightnode in…
Browse files Browse the repository at this point in the history
…to imp/arch
  • Loading branch information
jazg committed Aug 1, 2019
2 parents 2a6d163 + 07f42d8 commit 7241236
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
23 changes: 21 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,29 @@ jobs:
key: go-mod-v1-{{ checksum "go.sum" }}
- run:
name: Install tools
command: go get -u golang.org/x/lint/golint
command: |
go get -u golang.org/x/lint/golint
go get -u github.com/onsi/ginkgo/ginkgo
go get -u github.com/loongy/covermerge
go get -u github.com/mattn/goveralls
- run:
name: Run tests
command: go test -v ./...
command: |
# make sure all the tests pass
go test -v ./...
# all the tests passed so update coverage
CI=true /go/bin/ginkgo -v --race --cover --coverprofile coverprofile.out ./...
/go/bin/covermerge \
validator/coverprofile.out \
coverprofile.out \
dispatcher/coverprofile.out \
server/ratelimiter/coverprofile.out \
server/coverprofile.out \
updater/coverprofile.out \
client/coverprofile.out \
cacher/coverprofile.out \
store/coverprofile.out > covermerge.out
goveralls -coverprofile=covermerge.out -service=circleci
- run:
name: Run linter
command: golint ./...
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Lightnode

[![CircleCI](https://circleci.com/gh/renproject/lightnode/tree/master.svg?style=shield)](https://circleci.com/gh/renproject/lightnode/tree/master)
[![Coverage Status](https://coveralls.io/repos/github/renproject/lightnode/badge.svg?branch=master)](https://coveralls.io/github/renproject/lightnode?branch=master)

A node used for querying Darknodes using JSON-RPC 2.0 interfaces. Featuring query caching (for performance) as well as retrying for failed requests (for reliability).

Expand Down

0 comments on commit 7241236

Please sign in to comment.