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) # ---------------------------------------------------------------------------