chore(CI): Update Job to Enable Merge Queue (#126)

This commit is contained in:
Aleksandr Bezobchuk 2023-05-09 22:16:28 -04:00 committed by GitHub
parent 7b426a3aea
commit ca818ec228
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -1,6 +1,7 @@
name: Tests / Code Coverage
on:
pull_request:
merge_group:
push:
branches:
- main

View File

@ -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
}