From 2cdef7d05726035aba95a2e585c40d7286cba527 Mon Sep 17 00:00:00 2001 From: Mads Navntoft Date: Mon, 15 Sep 2025 14:47:03 +0200 Subject: [PATCH] hack: add python job to see if there are any alerts --- .github/workflows/codeql.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 1bb3f14b7..11d03352b 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -131,3 +131,26 @@ jobs: uses: ./analyze with: category: "/language:actions" + + analyze-python: + runs-on: ubuntu-latest + + strategy: + fail-fast: false + + permissions: + contents: read + security-events: write + + steps: + - name: Checkout + uses: actions/checkout@v5 + - name: Initialize CodeQL + uses: ./init + with: + languages: python + config-file: ./.github/codeql/codeql-actions-config.yml + - name: Perform CodeQL Analysis + uses: ./analyze + with: + category: "/language:python"