# SPDX-FileCopyrightText: 2026 David Seaward
#
# SPDX-License-Identifier: Apache-2.0

# Install dependencies and SDLC hooks
bootstrap:
    uv sync --all-extras
    uv run prek install

# Run all linters and formatters
lint:
    uv run prek run --all-files

# Run all tests
test:
    uv run pytest
