File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,22 +11,20 @@ permissions:
1111
1212jobs :
1313 ruff :
14+ # disabled until after a repo-wide ruff pass
15+ if : ${{ false }}
1416 runs-on : ubuntu-latest
1517 steps :
1618 - uses : actions/checkout@v7
17- with :
18- fetch-depth : 0
1919 - name : Install uv
2020 uses : astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
2121 with :
2222 enable-cache : true
2323 python-version : " 3.12"
2424 - name : Install pinned lint dependencies
2525 run : uv sync --locked --group lint
26- - name : Run Ruff on changed Python
27- env :
28- RUFF_BASE_SHA : ${{ github.event.pull_request.base.sha || github.event.before }}
29- run : uv run --frozen --group lint python scripts/lint_changed.py
26+ - name : Run Ruff
27+ run : uv run --frozen --group lint ruff check .
3028
3129 pytest :
3230 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments