16 lines
518 B
YAML
16 lines
518 B
YAML
name: Tests E2E
|
|
# This workflow allows to skip the e2e step if the PR does not contain any changes to the code
|
|
# See 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
|
|
on:
|
|
pull_request:
|
|
paths-ignore:
|
|
- "**/*.go"
|
|
- "go.mod"
|
|
- "go.sum"
|
|
|
|
jobs:
|
|
test-e2e:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: 'echo "No e2e tests required"'
|