chore(CI): Update Job to Enable Merge Queue (#126)
This commit is contained in:
parent
7b426a3aea
commit
ca818ec228
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
@ -5,10 +5,12 @@ on:
|
||||
- main
|
||||
- release/**
|
||||
pull_request:
|
||||
merge_group:
|
||||
permissions:
|
||||
contents: read
|
||||
# Optional: allow read access to pull request. Use with `only-new-issues` option.
|
||||
# pull-requests: read
|
||||
|
||||
jobs:
|
||||
golangci:
|
||||
name: golangci-lint
|
||||
|
||||
1
.github/workflows/test.yml
vendored
1
.github/workflows/test.yml
vendored
@ -1,6 +1,7 @@
|
||||
name: Tests / Code Coverage
|
||||
on:
|
||||
pull_request:
|
||||
merge_group:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
@ -73,7 +73,7 @@ func (suite *AnteTestSuite) executeAnteHandler(tx sdk.Tx, balance sdk.Coins) (sd
|
||||
signer := tx.GetMsgs()[0].GetSigners()[0]
|
||||
suite.bankKeeper.EXPECT().GetAllBalances(suite.ctx, signer).AnyTimes().Return(balance)
|
||||
|
||||
next := func(ctx sdk.Context, tx sdk.Tx, simulate bool) (sdk.Context, error) {
|
||||
next := func(ctx sdk.Context, _ sdk.Tx, _ bool) (sdk.Context, error) {
|
||||
return ctx, nil
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user