Skip to content

CodeQL

CodeQL #136

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: "40 23 * * 4"
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@v3
- name: After Prepare
run: python3 -m pip install --upgrade --user flake8
- name: Before Index
run: |
python3 -m flake8 --version
python3 -m flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
python3 -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
queries: +security-and-quality
- name: Autobuild
uses: github/codeql-action/autobuild@v2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{ matrix.language }}"