Skip to content

feat:format tracing & auto pypi #219

feat:format tracing & auto pypi

feat:format tracing & auto pypi #219

Workflow file for this run

name: docs
on:
push:
branches: [ main ]
pull_request:
permissions:
contents: write
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install mkdocs-material pymdown-extensions
- name: Build docs (strict)
run: mkdocs build --strict
deploy:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
needs: validate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install mkdocs-material pymdown-extensions
- run: mkdocs gh-deploy --force