Skip to content

refactor: use custom error types consistently in store.py and linker.… #108

refactor: use custom error types consistently in store.py and linker.…

refactor: use custom error types consistently in store.py and linker.… #108

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths:
- "src/**"
- "tests/**"
- "pyproject.toml"
- "justfile"
- ".github/workflows/ci.yml"
pull_request:
branches: [main]
paths:
- "src/**"
- "tests/**"
- "pyproject.toml"
- "justfile"
- ".github/workflows/ci.yml"
jobs:
check:
name: Check, Lint & Test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v6
- uses: extractions/setup-just@v2
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --extra dev
- name: Run checks
run: just check