forked from ignite/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: upgrade sdk and support app wiring * update tendermint * fix cli dependencies * fix app.go check * use cometbft-db * fix wrong replaces in the go.mod * run go.mod in ignite/templates/app/files/go.mod.plush * remove indirect require from ignite/templates/app/files/go.mod.plush * rollback some test changes * rollback some test changes * add ics proof file * fix unused import for simulation file * fixx app.go keepers * fix app.go * fix build issues * fix crisis and gov keepers * add changelog * fix duplicated genutil app module * fix lint issues * fix app.go tests * fix plugin version and lint * fix invalid module name in the `app.go` * rollback wrong import delete * replace the deprecated BroadcastBlockto BroadcastSync * fix unused import * increase the integration tests timeout * bump cosmos sdk and ibc version to the stable release * fix the chain id for the ibc chains * fix chain unit tests * fix query tests * fix faucet data racing * fix test sync mode and disable network test since we need to update the sdk * fix singleston tests * fix genesis state for ibc modules * add IsIBC context var * improve test readbility * add missing import * fix the config integration test * fix faucet test * split app integration tests * skip cosmogen tests * fix `more than one error-wrapping directive %w` error * remove unused rand * update CI plugin versions * fix lint issue for the new golangcilint version * fix typos * roolback rand import for module_simulation.go file * fix broadcastmode for default client.tom * fix tx integration tests * rollback some testdata changes * change new scaffold method signature * organize `go.mod` * update cosmossdk to v0.47.1 * fix unit tests for appwiring * fix unit tests * fix not found tx for chain unit tests * add simulation tests * add new simulation msg operations * clean simulation template * fix simulation tests with empty handler * fix export function * fix doctor import check * fix lint --------- Co-authored-by: İlker Göktuğ ÖZTÜRK <[email protected]>
- Loading branch information
Showing
152 changed files
with
2,718 additions
and
2,418 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,8 +12,8 @@ jobs: | |
markdown-link-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3.1.0 | ||
- uses: technote-space/[email protected].1 | ||
- uses: actions/checkout@v3.4.0 | ||
- uses: technote-space/[email protected].2 | ||
with: | ||
PATTERNS: | | ||
**/*.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
outputs: | ||
matrix: ${{ steps.set-matrix.outputs.matrix }} | ||
steps: | ||
- uses: actions/checkout@v3.1.0 | ||
- uses: actions/checkout@v3.4.0 | ||
- name: Finding files and store to output | ||
id: set-matrix | ||
run: echo "matrix=$({ cd integration && find . -type d ! -name testdata -maxdepth 1 -print; } | tail -n +2 | cut -c 3- | jq -R . | jq -cs .)" >> $GITHUB_OUTPUT | ||
|
@@ -29,8 +29,8 @@ jobs: | |
matrix: | ||
test-path: ${{fromJson(needs.pre-test.outputs.matrix)}} | ||
steps: | ||
- uses: actions/checkout@v3.1.0 | ||
- uses: technote-space/[email protected].1 | ||
- uses: actions/checkout@v3.4.0 | ||
- uses: technote-space/[email protected].2 | ||
with: | ||
PATTERNS: | | ||
**/*.go | ||
|
@@ -47,13 +47,13 @@ jobs: | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
restore-keys: | | ||
${{ runner.os }}-go- | ||
- uses: actions/setup-go@v3 | ||
- uses: actions/setup-go@v4 | ||
if: env.GIT_DIFF | ||
with: | ||
go-version: 1.19 | ||
- name: Run Integration Tests | ||
if: env.GIT_DIFF | ||
run: GOSUMDB=off go test -v -timeout 60m ./integration/${{ matrix.test-path }} | ||
run: GOSUMDB=off go test -v -timeout 80m ./integration/${{ matrix.test-path }} | ||
|
||
status: | ||
runs-on: ubuntu-latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,21 +12,22 @@ jobs: | |
runs-on: ubuntu-latest | ||
timeout-minutes: 6 | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: technote-space/[email protected] | ||
- uses: actions/[email protected] | ||
|
||
- uses: technote-space/[email protected] | ||
with: | ||
PATTERNS: | | ||
**/*.go | ||
go.mod | ||
go.sum | ||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.19 | ||
|
||
- uses: golangci/golangci-lint-action@v3 | ||
with: | ||
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. | ||
version: v1.50.1 | ||
version: v1.52.1 | ||
args: --timeout 10m | ||
github-token: ${{ secrets.github_token }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,16 +11,16 @@ jobs: | |
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3.1.0 | ||
- uses: technote-space/[email protected].1 | ||
- uses: actions/checkout@v3.4.0 | ||
- uses: technote-space/[email protected].2 | ||
with: | ||
PATTERNS: | | ||
**/*.go | ||
go.mod | ||
go.sum | ||
**/testdata/** | ||
- uses: actions/setup-go@v3 | ||
- uses: actions/setup-go@v4 | ||
if: env.GIT_DIFF | ||
with: | ||
go-version: 1.19 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.