Skip to content

🐛 Fix CI dependency install after pytest moved to dev extra #7

🐛 Fix CI dependency install after pytest moved to dev extra

🐛 Fix CI dependency install after pytest moved to dev extra #7

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --extra dev
- name: Run tests
env:
MPLBACKEND: Agg
run: uv run pytest