19 lines
359 B
YAML
19 lines
359 B
YAML
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 test-import
|