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