[lldb] [llvm] [CI][lldb] Add a github workflow that runs pylint on LLDB API test changes (PR #182003)
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 20 10:05:18 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
----------------
boomanaiden154 wrote:
Not the `runs-on`, just the `defaults` key.
https://github.com/llvm/llvm-project/pull/182003
More information about the llvm-commits
mailing list