diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fe8dfb5..f8a7154 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -42,7 +42,9 @@ jobs: make build - name: test & coverage report creation run: | - go test ./... -mod=readonly -timeout 12m -race -coverprofile=coverage.txt -covermode=atomic -tags='ledger test_ledger_mock' + # temporary disable -race flag until this issue fixed: + # - https://github.com/cosmos/cosmos-sdk/issues/22650 + go test ./... -mod=readonly -timeout 12m -coverprofile=coverage.txt -covermode=atomic -tags='ledger test_ledger_mock' if: env.GIT_DIFF env: GIT_DIFF: ${{ env.GIT_DIFF }}