Skip to content

CodeQL

CodeQL #492

Workflow file for this run

name: "CodeQL"
on:
pull_request: ~
push:
branches:
- master
# Allow job to be triggered manually.
workflow_dispatch:
# Run job as nightly recurrent job.
schedule:
- cron: '0 2 * * *'
# Cancel in-progress jobs when pushing to the same branch.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ python ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: '3.12'
architecture: x64
cache: 'pip'
cache-dependency-path: 'setup.py'
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
config-file: ./.github/codeql.yml
queries: +security-and-quality
- name: Install project
run: |
python -m pip install --editable=. --verbose
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{ matrix.language }}"