Merge pull request #336 from robinje/dependabot/pip/requirements/boto… #397
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cloud formation Analysis | |
on: | |
push: | |
branches: [develop, qa, prod] | |
pull_request: | |
branches: "**" | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
evaluate-cloudformation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install Analysis Tools | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade cfn-lint | |
- name: Validate CloudFormation Templates | |
run: | | |
cfn-lint ./cloudformation/*.yml |