15 lines
302 B
YAML
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"'
|