Replace the runtime allocator #676
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: Lint Python Scripts | |
| on: | |
| pull_request: | |
| # Both jobs (`lint` for .ci-scripts, `lint-rt-stress` for test/rt-stress) | |
| # run whenever either tree changes. A PR touching only one still runs the | |
| # other's ruff pass over an unchanged tree -- a couple of seconds, not | |
| # worth splitting the workflow to avoid. | |
| paths: | |
| - '.ci-scripts/**' | |
| - 'test/rt-stress/**' | |
| - '.github/workflows/lint-python.yml' | |
| concurrency: | |
| group: lint-python-${{ github.ref }} | |
| cancel-in-progress: true | |
| # The ruff action is a container image pulled from ghcr. | |
| permissions: | |
| packages: read | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6.0.2 | |
| - name: Check Python files under .ci-scripts/ | |
| # ruff 0.15.12 | |
| uses: docker://ghcr.io/astral-sh/ruff@sha256:e42f3866bb9f701dbc459cdec3f5aca06511e6a38e6e04bfd4d04a2be26d4fd4 | |
| with: | |
| args: check .ci-scripts | |
| lint-rt-stress: | |
| name: Lint rt-stress | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6.0.2 | |
| - name: Check Python files under test/rt-stress/ | |
| # ruff 0.15.12 | |
| uses: docker://ghcr.io/astral-sh/ruff@sha256:e42f3866bb9f701dbc459cdec3f5aca06511e6a38e6e04bfd4d04a2be26d4fd4 | |
| with: | |
| args: check test/rt-stress |