Postman Updatev3 from json to YAML #65
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: Python CI (Ubuntu) | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - hot-fix | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12"] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip setuptools wheel | |
| python -m pip install -e ".[dev]" | |
| - name: Validate visual sanitization | |
| run: python tools/sanitize.py --check | |
| - name: Validate Postman visualizer sync | |
| run: python tools/postman/sync_visualizers.py --check | |
| - name: Validate generated visual docs | |
| run: python tools/docs/build_visual_docs.py --check | |
| - name: Run tests | |
| run: python -m pytest -q |