Skip to content

Postman Updatev3 from json to YAML #65

Postman Updatev3 from json to YAML

Postman Updatev3 from json to YAML #65

Workflow file for this run

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