Skip to content

Release 0.1.39

Release 0.1.39 #40

name: MkDocs Site Build
on:
push:
branches:
- main
- hot-fix
pull_request:
permissions:
contents: read
jobs:
build-mkdocs-site:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- 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
- name: Build MkDocs site
run: mkdocs build --strict
- name: Upload site artifact
uses: actions/upload-artifact@v4
with:
name: mkdocs-site
path: site/
if-no-files-found: error