Skip to content

CodeQL

CodeQL #2

Workflow file for this run

name: "CodeQL"
on:
schedule:
- cron: "38 16 * * 4"
jobs:
analyze:
name: "Analyze"
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
language: ["python"]
steps:
- name: "Checkout repository"
uses: "actions/checkout@v3.5.3"
- name: "Initialize CodeQL"
uses: "github/codeql-action/init@v2.21.2"
with:
languages: "${{ matrix.language }}"
- name: "Autobuild"
uses: "github/codeql-action/autobuild@v2.21.2"
- name: "Perform CodeQL Analysis"
uses: "github/codeql-action/analyze@v2.21.2"
with:
category: "/language:${{matrix.language}}"