feat(evm-precompile): Emit EVM events created to reflect the ABCI events that occur outside the EVM to make sure that block explorers and indexers can find indexed ABCI event information. #2745
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# skip-integration-tests.yml runs when unit-tests.yml is skipped | |
name: Integration tests | |
on: | |
pull_request: | |
# paths-ignore makes the action run when the given paths are unchanged | |
# See "Handling skipped but required checks" in | |
# https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks | |
paths-ignore: ["**.go", "**.proto", "go.mod", "go.sum"] | |
jobs: | |
integration-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: skip-tests | |
run: | | |
echo "integration-tests skipped since Golang files were not changed." |