diff --git a/.circleci/config.yaml b/.circleci/config.yaml new file mode 100644 index 00000000..14a718b3 --- /dev/null +++ b/.circleci/config.yaml @@ -0,0 +1,12 @@ +version: 2 +jobs: + build: + docker: + - image: circleci/golang:1.10 + + working_directory: /go/src/github.com/cosmos/ethermint + + steps: + - checkout + - run: make tools deps + - run: make test-lint test-unit