abap2UI5/.github/workflows/app_test.yaml
oblomov-dev 62f8fa8ad3
update
2025-02-19 13:49:56 +00:00

20 lines
558 B
YAML

name: app_test
on:
pull_request:
jobs:
app_test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Check for changes in src/01/03
run: |
if git diff --name-only origin/main | grep '^src/01/03/'; then
echo "Error: Changes detected in src/01/03. This directory should not be modified. Files will be auto generated. Change files in folder app/ instead. "
exit 1
else
echo "No changes detected in src/01/03."
fi