Skip to content

Commit d2d84f0

Browse files
committed
Disable repo-wide Ruff check temporarily
1 parent 417721f commit d2d84f0

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/tests.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,20 @@ permissions:
1111

1212
jobs:
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

0 commit comments

Comments
 (0)