Skip to content

Commit 96451b5

Browse files
authored
Merge pull request #1188 from cosmos/release/v0.20.0
Release/v0.18.0
2 parents cf46be2 + cb6534a commit 96451b5

File tree

187 files changed

+10111
-3720
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

187 files changed

+10111
-3720
lines changed

.circleci/config.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
command: |
3939
export PATH="$GOBIN:$PATH"
4040
make install
41+
make install_examples
4142
- persist_to_workspace:
4243
root: /tmp/workspace
4344
paths:
@@ -84,6 +85,22 @@ jobs:
8485
export PATH="$GOBIN:$PATH"
8586
make test_unit
8687
88+
test_cli:
89+
<<: *defaults
90+
parallelism: 1
91+
steps:
92+
- attach_workspace:
93+
at: /tmp/workspace
94+
- restore_cache:
95+
key: v1-pkg-cache
96+
- restore_cache:
97+
key: v1-tree-{{ .Environment.CIRCLE_SHA1 }}
98+
- run:
99+
name: Test cli
100+
command: |
101+
export PATH="$GOBIN:$PATH"
102+
make test_cli
103+
87104
test_cover:
88105
<<: *defaults
89106
parallelism: 4
@@ -137,6 +154,9 @@ workflows:
137154
- lint:
138155
requires:
139156
- setup_dependencies
157+
- test_cli:
158+
requires:
159+
- setup_dependencies
140160
- test_unit:
141161
requires:
142162
- setup_dependencies

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@
44
* [ ] Updated all code comments where relevant
55
* [ ] Wrote tests
66
* [ ] Updated CHANGELOG.md
7+
* [ ] Updated Basecoin / other examples
8+
* [ ] Squashed related commits and prefixed with PR number per [coding standards](https://github.com/tendermint/coding/blob/master/README.md#merging-a-pr)

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@ baseapp/data/*
1919
coverage.txt
2020
profile.out
2121

22-
### Vagrant ###
22+
# Vagrant
2323
.vagrant/
2424
*.box
2525
*.log
2626
vagrant
27+
28+
# Graphviz
29+
dependency-graph.png

0 commit comments

Comments
 (0)