From 6402094682256c465fb9dbed65c2944da0c98482 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 20 Jul 2026 23:29:25 +0000 Subject: [PATCH] Remove the lint job from CI Drops the CI 'lint' job (isort/black/pylint/flake8 via pre-commit). The pre-commit hooks remain in .pre-commit-config.yaml so contributors can still run them locally; CI no longer gates on them. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01DDSofWX5HwawsrwbN2nSXR --- .github/workflows/ci.yml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4eb09e8..a141620 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,26 +8,6 @@ on: - cron: "0 4 * * *" jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: "3.11" - - name: Install dependencies - run: | - python -m pip install -e .[dev] - pre-commit install-hooks - - name: Run isort - run: pre-commit run isort --all-files - - name: Run black - run: pre-commit run black --all-files - - name: Run pylint - run: pre-commit run pylint --all-files - - name: Run flake8 - run: pre-commit run flake8 --all-files - tests-unit: name: unit / py${{ matrix.python-version }} / ${{ matrix.os }} runs-on: ${{ matrix.os }}