Python: Fix workflow samples for bugbash: part 2 #6573
Workflow file for this run
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: Python - Code Quality | |
| on: | |
| merge_group: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: ["main"] | |
| paths: | |
| - "python/**" | |
| env: | |
| # Configure a constant location for the uv cache | |
| UV_CACHE_DIR: /tmp/.uv-cache | |
| jobs: | |
| pre-commit-hooks: | |
| name: Pre-commit Hooks | |
| if: "!cancelled()" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10"] | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| defaults: | |
| run: | |
| working-directory: ./python | |
| env: | |
| UV_PYTHON: ${{ matrix.python-version }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up python and install the project | |
| id: python-setup | |
| uses: ./.github/actions/python-setup | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| os: ${{ runner.os }} | |
| env: | |
| UV_CACHE_DIR: /tmp/.uv-cache | |
| - uses: actions/cache@v5 | |
| with: | |
| path: ~/.cache/prek | |
| key: prek|${{ matrix.python-version }}|${{ hashFiles('python/.pre-commit-config.yaml') }} | |
| - uses: j178/prek-action@v1 | |
| name: Run Pre-commit Hooks (excluding poe-check) | |
| env: | |
| SKIP: poe-check | |
| with: | |
| extra-args: --cd python --all-files | |
| package-checks: | |
| name: Package Checks | |
| if: "!cancelled()" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10"] | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| defaults: | |
| run: | |
| working-directory: ./python | |
| env: | |
| UV_PYTHON: ${{ matrix.python-version }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up python and install the project | |
| id: python-setup | |
| uses: ./.github/actions/python-setup | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| os: ${{ runner.os }} | |
| env: | |
| UV_CACHE_DIR: /tmp/.uv-cache | |
| - name: Run fmt, lint, pyright in parallel across packages | |
| run: uv run poe check-packages | |
| samples-markdown: | |
| name: Samples & Markdown | |
| if: "!cancelled()" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10"] | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| defaults: | |
| run: | |
| working-directory: ./python | |
| env: | |
| UV_PYTHON: ${{ matrix.python-version }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up python and install the project | |
| id: python-setup | |
| uses: ./.github/actions/python-setup | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| os: ${{ runner.os }} | |
| env: | |
| UV_CACHE_DIR: /tmp/.uv-cache | |
| - name: Run samples lint | |
| run: uv run poe samples-lint | |
| - name: Run samples syntax check | |
| run: uv run poe samples-syntax | |
| - name: Run markdown code lint | |
| run: uv run poe markdown-code-lint | |
| mypy: | |
| name: Mypy Checks | |
| if: "!cancelled()" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10"] | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| defaults: | |
| run: | |
| working-directory: ./python | |
| env: | |
| UV_PYTHON: ${{ matrix.python-version }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up python and install the project | |
| id: python-setup | |
| uses: ./.github/actions/python-setup | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| os: ${{ runner.os }} | |
| env: | |
| UV_CACHE_DIR: /tmp/.uv-cache | |
| - name: Run Mypy | |
| env: | |
| GITHUB_BASE_REF: ${{ github.event.pull_request.base.ref || github.base_ref || 'main' }} | |
| run: uv run poe ci-mypy |