Skip to content

DX: define developer environment with uv #38

DX: define developer environment with uv

DX: define developer environment with uv #38

Workflow file for this run

name: Notebook
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
UV_SYSTEM_PYTHON: true
on:
workflow_dispatch:
pull_request:
branches:
- main
paths:
- "**/*.ipynb"
jobs:
pytest:
name: Run all notebooks
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Install graphviz
run: sudo apt-get -y install graphviz
- run: uv run --extra dev pytest