Skip to content

add CodeQL GH workflow to be run on PRs #3

add CodeQL GH workflow to be run on PRs

add CodeQL GH workflow to be run on PRs #3

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/[email protected]