From c45e7b3bb589899f2ecba4196db3db935f1c1455 Mon Sep 17 00:00:00 2001 From: Roman Plevka Date: Fri, 15 Nov 2024 14:19:15 +0100 Subject: [PATCH] add CodeQL GH workflow to be run on PRs --- .github/workflows/codeql-analysis.yaml | 38 ++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/codeql-analysis.yaml diff --git a/.github/workflows/codeql-analysis.yaml b/.github/workflows/codeql-analysis.yaml new file mode 100644 index 0000000..2476df1 --- /dev/null +++ b/.github/workflows/codeql-analysis.yaml @@ -0,0 +1,38 @@ +name: "CodeQL" + +on: + push: + branches: [main] + pull_request: + types: [opened, synchronize, reopened] + paths-ignore: + - "*.md" +jobs: + analyze: + name: CodeQL Analysis + runs-on: ubuntu-latest + + strategy: + fail-fast: false + matrix: + python-version: ["3.12"] + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + + - name: Pre Commit Checks + uses: pre-commit/action@v3.0.1 \ No newline at end of file