From: Pieter Lexis Date: Wed, 3 Jun 2026 09:11:19 +0000 (+0200) Subject: ci: Add action to check for "self" X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4776f693bb7e3259a201284d1d490cd48f56f323;p=thirdparty%2Fpdns.git ci: Add action to check for "self" Signed-off-by: Pieter Lexis --- diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index da202997cc..7b85d9fe9a 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -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'