Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/python_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,12 @@ jobs:
- name: Setup uv
uses: astral-sh/setup-uv@v7

- name: ruff
- name: ruff check
run: uvx ruff check .

- name: ruff format
run: uvx ruff format --diff .

# This is an opinionated list of disabled warnings.
# It potentially makes sense to eventually remove
# this in favor of a per-project configuration but
Expand All @@ -48,6 +51,3 @@ jobs:
# W1509: subprocess-popen-preexec-fn
- name: pylint
run: uvx pylint --disable C0114,C0115,C0116,C0301,C0302,R0801,R0902,R0903,R0911,R0912,R0913,R0914,R0915,W1509 --jobs $(nproc) $(git ls-files '*.py')

- name: yapf
run: uvx yapf --diff --recursive $GITHUB_WORKSPACE