Skip to content

docs: add legendgram plots #32

docs: add legendgram plots

docs: add legendgram plots #32

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
paths-ignore:
- README.md
- CHANGELOG.md
- .gitignore
- examples/**
- docker/**
- images/**
- imgs/**
- docs/**
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
# Step 1: Checkout the repository
- name: Checkout code
uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
# Step 4: Install dependencies using UV
- name: Install deps
run: uv sync --locked --all-extras --dev
# Step 5: Run tests with pytest
- name: Run tests
run: uv run pytest tests