Skip to content

Commit

Permalink
add CodeQL GH workflow to be run on PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
rplevka committed Nov 15, 2024
1 parent 7e223c4 commit 36b5141
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/codeql-analysis.yaml
Original file line number Diff line number Diff line change
@@ -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/[email protected]

0 comments on commit 36b5141

Please sign in to comment.