Skip to content
This repository was archived by the owner on Jul 7, 2026. It is now read-only.

chore: first pass on an install script #285

chore: first pass on an install script

chore: first pass on an install script #285

Workflow file for this run

name: pytest
on:
pull_request:
permissions:
contents: read
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@4959332f0f014c5280e7eac8b70c90cb574c9f9b # v6.6.0
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Install dependencies
run: uv sync --locked --all-extras --dev
- name: Run pytest
run: uv run pytest