From 9ed3ad8656d2c9b0e89c83c727ab783f6c9558cb Mon Sep 17 00:00:00 2001 From: RaghavChamadiya Date: Mon, 6 Apr 2026 15:22:35 +0530 Subject: [PATCH] ci: remove Lint + Type Check job from CI pipeline --- .github/workflows/ci.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5806727..ea9250d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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) # ---------------------------------------------------------------------------