Skip to content

Move installation section #19

Move installation section

Move installation section #19

Workflow file for this run

name: pytest-uv
on:
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python
run: uv venv --python ${{ matrix.python-version }}
- name: Install opennb
run: |
uv pip install -e ".[test]"
- name: Run pytest (minimal)
run: |
source .venv/bin/activate
pytest