Advance the search read pointer from the reindex instead of a chain (PP-4908) #19774
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Mypy (Type check) | |
| on: [push, pull_request] | |
| env: | |
| PYTHON_VERSION: "3.12" | |
| jobs: | |
| mypy: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v9.0.0 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: uv.lock | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| activate-environment: true | |
| - name: Install Python Packages 📦 | |
| run: uv sync --frozen --no-group ci | |
| - name: Run MyPy 🪄 | |
| run: mypy |