Skip to content

Commit

Permalink
Merge PR cosmos#295: ci: add proto checks to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
tac0turtle authored Feb 21, 2020
1 parent fc9884f commit 086ec8f
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ executors:
environment:
AWS_REGION: us-east-1
LEDGER_ENABLED: false

protoc:
docker:
- image: tendermintdev/docker-protoc
environment:
LEDGER_ENABLED: false

commands:
make:
Expand Down Expand Up @@ -94,6 +98,20 @@ jobs:
paths:
- "."

proto-lint:
executor: protoc
steps:
- checkout
- run:
command: make proto-lint

proto-breakage:
executor: protoc
steps:
- checkout
- run:
command: make proto-check-breaking

test-sim-nondeterminism:
executor: golang
steps:
Expand Down Expand Up @@ -387,6 +405,8 @@ workflows:
- test-sim-nondeterminism:
requires:
- setup-dependencies
- proto-lint
- proto-breakage
- test-sim-import-export:
requires:
- setup-dependencies
Expand Down

0 comments on commit 086ec8f

Please sign in to comment.