Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 0 additions & 29 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,35 +43,6 @@ jobs:
- name: Run unit tests
run: uv run pytest tests/unit/ -v --tb=short

# ---------------------------------------------------------------------------
# Linting and type checking
# ---------------------------------------------------------------------------
lint:
name: Lint + Type Check
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
enable-cache: true

- name: Install dependencies
run: uv sync --all-packages

- name: Ruff lint
run: uv run ruff check packages/ tests/

- name: Ruff format check
run: uv run ruff format --check packages/ tests/

# mypy strict checking disabled until type annotations are cleaned up
# - name: mypy type check (core)
# run: uv run mypy packages/core/src --config-file pyproject.toml

# ---------------------------------------------------------------------------
# Integration tests (run on push to main only, slower)
# ---------------------------------------------------------------------------
Expand Down
Loading