Skip to content

Add package-lock.json #2

Add package-lock.json

Add package-lock.json #2

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", "3.13t"]
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 graphviz-anywidget
run: |
# Install minimal dependencies for testing
uv pip install -e ".[test]"
- name: Run pytest
run: |
source .venv/bin/activate
pytest