-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: bump cli version for all apps #34
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mostly lgtm!
|
||
## lint: Run Golang CI Lint. | ||
lint: | ||
@echo Running golangci-lint... | ||
@go run github.com/golangci/golangci-lint/cmd/golangci-lint run --out-format=tab --issues-exit-code=0 | ||
@go list -f '{{.Dir}}/...' -m | xargs go run github.com/golangci/golangci-lint/cmd/golangci-lint run --out-format=tab --issues-exit-code=0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can do golangci-lint run ./... <args>
, which is easier to read.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried this way, but it always threw me an error after the command. I also added this way because other commands use the same pattern
@@ -8,9 +8,14 @@ The app adds `ignite relayer hermes` commands to allow IBC communication between | |||
|
|||
- Run both chain to be relayed. | |||
|
|||
- add the hermes relayer app: | |||
- add the hermes relayer app from remote: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe "install" instead of "add":
- add the hermes relayer app from remote: | |
- install the Hermes relayer app from a remote repository: |
- or clone the repo and add the hermes relayer app local: | ||
```shell | ||
ignite app install -g $GOPATH/src/github.com/ignite/apps/hermes |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe something similar to this that uses "install" instead of "add":
- or clone the repo and add the hermes relayer app local: | |
```shell | |
ignite app install -g $GOPATH/src/github.com/ignite/apps/hermes | |
- or clone the repository and install the Hermes relayer app from a local directory: | |
```shell | |
ignite app install -g PATH/TO/LOCAL/apps/hermes |
Description
v28
;tool.go
file in the integration folder;Makefile
commands;make format
;