]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
ci: Add action to check for "self" 16518/head
authorPieter Lexis <pieter.lexis@powerdns.com>
Wed, 3 Jun 2026 09:11:19 +0000 (11:11 +0200)
committerPieter Lexis <pieter.lexis@powerdns.com>
Mon, 15 Jun 2026 08:44:25 +0000 (10:44 +0200)
Signed-off-by: Pieter Lexis <pieter.lexis@powerdns.com>
.github/workflows/codeql-analysis.yml

index da202997cc015fabc93da77f5627bbd9f3e3bb53..7b85d9fe9a9f6e158c0d6e35df6ed2743eea5093 100644 (file)
@@ -307,6 +307,11 @@ jobs:
       with:
         fetch-depth: 0
         persist-credentials: false
-    - uses: astral-sh/ruff-action@v4.0.0
+    - name: Check Python formatting
+      uses: astral-sh/ruff-action@v4.0.0
       with:
         args: 'format --check --diff'
+    - name: Check method variables
+      uses: astral-sh/ruff-action@v4.0.0
+      with:
+        args: 'check --select N805'