Skip to content

🧹 migrate to uv

🧹 migrate to uv #99

Workflow file for this run

name: Verify documentation
on:
push:
branches: ["main", "master"]
pull_request:
branches: ["main", "master"]
jobs:
verify-docs:
name: Check Documentation
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.13"
- name: Install UV
uses: yezz123/setup-uv@v4
- name: Install dependencies
run: |
uv sunc --extra testing
- name: Build docs with MkDocs
run: |
make docs
- name: Check Markdown links
uses: gaurav-nelson/github-action-markdown-link-check@v1