try to fix add log missing tx hash #51
This file contains hidden or 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
| name: Solidity Test | |
| on: | |
| merge_group: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - release/** | |
| permissions: read-all | |
| jobs: | |
| test-solidity: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.22' | |
| check-latest: true | |
| - uses: actions/checkout@v4 | |
| - uses: technote-space/[email protected] | |
| with: | |
| PATTERNS: | | |
| **/**.sol | |
| **/**.go | |
| go.mod | |
| go.sum | |
| *.toml | |
| - name: Test Solidity | |
| run: | | |
| make test-solidity | |
| if: env.GIT_DIFF |