fix: error retruned by precompiled contract can not be caught with tr… #381
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
name: E2E Test | |
permissions: | |
contents: read | |
on: | |
pull_request: | |
branches: | |
- develop | |
- main | |
- master | |
push: | |
branches: | |
- develop | |
- main | |
- master | |
jobs: | |
test-e2e: | |
# disabled for now, since we don't have any e2e tests. | |
if: ${{ false }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21' | |
check-latest: true | |
- uses: actions/checkout@v4 | |
- uses: technote-space/[email protected] | |
with: | |
PATTERNS: | | |
app/app.go | |
app/upgrades/* | |
go.mod | |
go.sum | |
tests/e2e/* | |
- name: Test E2E | |
run: | | |
make test-e2e | |
if: env.GIT_DIFF | |