Merge pull request #454 from cosmos/jack/circle

Circle CI To run tests
This commit is contained in:
Alexander Bezobchuk 2018-08-01 08:30:53 -04:00 committed by GitHub
commit 95165b0a67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

18
.circleci/config.yml Normal file
View File

@ -0,0 +1,18 @@
version: 2
jobs:
build:
docker:
- image: circleci/golang:1.10
working_directory: /go/src/github.com/cosmos/ethermint
steps:
- checkout
- run:
name: "Install tools and dependancies"
command: make tools deps
- run:
name: "Run tests"
command: make test-lint test-unit