Skip to content

update README and CHANGELOG #172

update README and CHANGELOG

update README and CHANGELOG #172

Workflow file for this run

name: Python documentation
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
docs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
version: "0.8.2"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
uv run sphinx-build -b html docs/source/ docs/build/html