cosmos-sdk/.github/workflows/test-e2e-skip.yml
2022-09-23 11:33:38 -05:00

15 lines
302 B
YAML

name: Tests E2E
# This workflow allows to skip the e2e step if the PR does not contain any changes to the code
on:
pull_request:
paths-ignore:
- "**/*.go"
- "go.mod"
- "go.sum"
jobs:
test-e2e:
runs-on: ubuntu-latest
steps:
- run: 'echo "No e2e tests required"'