Skip to content

Commit

Permalink
put back
Browse files Browse the repository at this point in the history
  • Loading branch information
sesheffield committed Jul 25, 2024
1 parent dd3e651 commit ca2764c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 24 deletions.
33 changes: 10 additions & 23 deletions .github/workflows/ci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,20 @@ jobs:
name: go test
runs-on: ubuntu-latest
if: |
contains(needs.changed_files.outputs.changed_files, '.go') ||
contains(needs.changed_files.outputs.changed_files, 'go.sum') ||
contains(steps.changed-files.outputs.changed_files, '.go') ||
contains(steps.changed-files.outputs.changed_files, 'go.sum') ||
(
contains(needs.changed_files.outputs.changed_files, '.yml') ||
contains(needs.changed_files.outputs.changed_files, '.yaml')
contains(steps.changed-files.outputs.changed_files, '.yml') ||
contains(steps.changed-files.outputs.changed_files, '.yaml')
)
&&
(
contains(needs.changed_files.outputs.changed_files, 'app') ||
contains(needs.changed_files.outputs.changed_files, 'client') ||
contains(needs.changed_files.outputs.changed_files, 'cmd') ||
contains(needs.changed_files.outputs.changed_files, 'migrate') ||
contains(needs.changed_files.outputs.changed_files, 'tests') ||
contains(needs.changed_files.outputs.changed_files, 'x')
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
Expand All @@ -63,16 +63,3 @@ jobs:
readarray -t test_dirs < <(find * -name "*_test.go" -exec dirname {} \; | sort | uniq | grep -v -e '^\.$')
half_nproc=$(( $(nproc --all) / 2 ))
printf '%s\0' "${test_dirs[@]}" | xargs -0 -P $half_nproc -n 1 -I {} go test "./{}" -race
# - name: Load Version
# id: load-version
# run: |
# echo "GOLANGCI_VERSION=v$(cat .golangci-version)"
#
# - name: golangci-lint
# uses: golangci/golangci-lint-action@v6
# with:
# version: ${{ steps.load-version.outputs.GOLANGCI_VERSION }}
# args: --timeout 30m --verbose --allow-parallel-runners --max-same-issues 0 --max-issues-per-linter 0
# working-directory: ${{ github.workspace }}
# if: |
# contains(steps.changed-files.outputs.all_changed_files, '.go')
1 change: 0 additions & 1 deletion app/ante/ante.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@ func newEthAnteHandler(options HandlerOptions) sdk.AnteHandler {
evmante.NewEthIncrementSenderSequenceDecorator(options.AccountKeeper), // innermost AnteDecorator.
evmante.NewEthEmitEventDecorator(options.EvmKeeper), // emit eth tx hash and index at the very last ante handler.
)

}

func Recover(logger tmlog.Logger, err *error) {
Expand Down

0 comments on commit ca2764c

Please sign in to comment.