Azure Diagrams Skill v2.0.0: diagrams 0.25.1, multi-AI portability, IaC parser, CI #2
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [main, "feature/**"] | |
| pull_request: | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: skills/azure-diagrams | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install Graphviz (system package) | |
| run: sudo apt-get update && sudo apt-get install -y graphviz | |
| - name: Install Python dependencies | |
| run: pip install -r requirements.txt | |
| - name: Verify installation | |
| run: python scripts/verify_installation.py | |
| - name: Validate every diagrams import in the docs | |
| run: python scripts/check_imports.py | |
| - name: Render every runnable example block | |
| run: python scripts/render_examples.py | |
| - name: Verify the ARM IaC parser | |
| run: python scripts/iac_to_diagram.py tests/fixtures/sample-arm.json --render |