Skip to content

docs fix

docs fix #36

Workflow file for this run

name: Ingrain Server Unit Tests
on:
pull_request:
branches: [main]
types: [opened, synchronize, reopened]
push:
branches: [main]
# ─────────────── Jobs ───────────────
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.11" ]
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install uv
uv sync --dev
- name: Run tests
run: uv run pytest -q