[lldb] [llvm] [CI][lldb] Add a github workflow that runs pylint on LLDB API test changes (PR #182003)
Michael Buch via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 20 09:55:09 PST 2026
================
@@ -0,0 +1,63 @@
+name: "LLDB Python Lint"
+
+permissions:
+ contents: read
+
+on:
+ pull_request:
+ paths:
+ - 'lldb/test/API/**.py'
+ - '.github/workflows/lldb-pylint-action.yml'
+
+jobs:
+ code_linter:
+ if: github.repository_owner == 'llvm'
+ runs-on: ubuntu-24.04
+ defaults:
+ run:
+ shell: bash
----------------
Michael137 wrote:
You mean all of the following?
```
runs-on: ubuntu-24.04
defaults:
run:
shell: bash
```
https://github.com/llvm/llvm-project/pull/182003
More information about the llvm-commits
mailing list