Skip to content

Working, both static and streaming #2

Working, both static and streaming

Working, both static and streaming #2

name: Validate Template
on:
push:
paths:
- ".github/workflows/validate-template.yml"
- "./template.yml"
workflow_dispatch:
jobs:
validate-template:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
environment: test
steps:
- uses: aws-actions/setup-sam@v1
- name: sam fix https://github.com/aws/aws-sam-cli/issues/4527
run: $(dirname $(readlink $(which sam)))/pip install --force-reinstall "cryptography==38.0.4"
- uses: aws-actions/configure-aws-credentials@master
with:
role-to-assume: arn:aws:iam::${{ secrets.AwsAccount }}:role/github-actions-role
aws-region: us-east-1
- uses: actions/checkout@v3
- name: Validate template
run: sam build && sam validate