Skip to content

Fix jobs structural error in publish workflow #10

Fix jobs structural error in publish workflow

Fix jobs structural error in publish workflow #10

Workflow file for this run

name: Docs
on:
push:
branches: [ master ]
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- 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
pip install uv
uv pip install --system .
uv pip install --system mkdocs-material mkdocstrings[python]
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force