Skip to content

Updating ReadMe and Developer.md file #28

Updating ReadMe and Developer.md file

Updating ReadMe and Developer.md file #28

Workflow file for this run

name: Pull Request Workflow
on:
pull_request:
branches:
- main
jobs:
validate-template-code:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install AWS SAM CLI
run: |
pip install --user aws-sam-cli
- name: Validate SAM Templates
run: |
find . -path "./.github" -prune -o \( -name "*.yaml" -o -name "*.yml" \) -print0 | while IFS= read -r -d '' template; do
echo "Validating template: $template"
sam validate --template-file "$template" --region us-east-2 --lint
done
shell: bash