docs: Updating impact of AVD multi-region items #332
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: Validate YAML Recommendations | |
on: | |
pull_request: | |
branches: | |
- main | |
- dev-tools | |
paths: | |
- '**/*.yaml' | |
workflow_dispatch: {} | |
jobs: | |
yaml_file_check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.x | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Run YAML file check | |
run: | | |
python -u .github/scripts/validate-yaml-recommendations.py | |