Skip to content

Commit

Permalink
what
Browse files Browse the repository at this point in the history
  • Loading branch information
sesheffield committed Jul 25, 2024
1 parent ad79dcd commit 9a2b98a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 20 deletions.
35 changes: 16 additions & 19 deletions .github/workflows/ci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,22 +45,22 @@ jobs:
args: ./...
golang-test:
runs-on: ubuntu-latest
if: |
contains(steps.changed-files.outputs.changed_files, '.go') ||
contains(steps.changed-files.outputs.changed_files, 'go.sum') ||
(
contains(steps.changed-files.outputs.changed_files, '.yml') ||
contains(steps.changed-files.outputs.changed_files, '.yaml')
)
&&
(
contains(steps.changed-files.outputs.changed_files, 'app') ||
contains(steps.changed-files.outputs.changed_files, 'client') ||
contains(steps.changed-files.outputs.changed_files, 'cmd') ||
contains(steps.changed-files.outputs.changed_files, 'migrate') ||
contains(steps.changed-files.outputs.changed_files, 'tests') ||
contains(steps.changed-files.outputs.changed_files, 'x')
)
# if: |
# contains(steps.changed-files.outputs.changed_files, '.go') ||
# contains(steps.changed-files.outputs.changed_files, 'go.sum') ||
# (
# contains(steps.changed-files.outputs.changed_files, '.yml') ||
# contains(steps.changed-files.outputs.changed_files, '.yaml')
# )
# &&
# (
# contains(steps.changed-files.outputs.changed_files, 'app') ||
# contains(steps.changed-files.outputs.changed_files, 'client') ||
# contains(steps.changed-files.outputs.changed_files, 'cmd') ||
# contains(steps.changed-files.outputs.changed_files, 'migrate') ||
# contains(steps.changed-files.outputs.changed_files, 'tests') ||
# contains(steps.changed-files.outputs.changed_files, 'x')
# )
env:
COVERAGE_DIR: out/coverage/unit/go
COVERAGE_PATH: out/coverage/unit/go/cover.out
Expand All @@ -69,9 +69,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v44
- name: Install Go
uses: actions/setup-go@v5
with:
Expand Down
1 change: 0 additions & 1 deletion app/ante/ante.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ func newCosmosAnteHandler(options cosmosHandlerOptions) sdk.AnteHandler {

var sigVerification sdk.AnteDecorator = authante.NewSigVerificationDecorator(options.AccountKeeper, options.SignModeHandler)
if options.isEIP712 {

sigVerification = evmante.NewLegacyEip712SigVerificationDecorator(options.AccountKeeper, options.SignModeHandler, options.EvmKeeper)
}

Expand Down

0 comments on commit 9a2b98a

Please sign in to comment.