Skip to content

chore: release 0.1.6 #71

chore: release 0.1.6

chore: release 0.1.6 #71

Workflow file for this run

name: Deploy Documentation
on:
push:
branches: [ main ]
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.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
pip install mkdocs-material mkdocstrings[python]
- name: Build and Deploy
run: mkdocs gh-deploy --force