Skip to content

feat: drop python 3.8 support #526

feat: drop python 3.8 support

feat: drop python 3.8 support #526

Workflow file for this run

name: Build Docs
on: [push, pull_request]
jobs:
docs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v8.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --group docs
- name: Update docs
run: |
cd docs
cp ../README.md index.md
cp ../logo.png ./
cd ..
uv run mkdocs build --clean
if: success()
- name: Deploy docs
run: |
uv run mkdocs gh-deploy --clean --force
if: success() && github.ref == 'refs/heads/master'