Bump pyflakes from 3.1.0 to 3.2.0 #99
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow uses CodeQL to perform static analysis on the codebase. | |
# CodeQL is a tool from GitHub that scans your code and finds potential vulnerabilities and errors. | |
# This workflow is triggered on push to main and develop branches, on pull requests to main, and on a schedule. | |
name: "CodeQL" | |
on: | |
push: | |
branches: [ "main", "develop" ] | |
pull_request: | |
branches: [ "main" ] | |
schedule: | |
- cron: '37 14 * * 6' | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
timeout-minutes: 360 | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
# The matrix strategy allows you to run jobs on multiple versions of a language, operating system, or any other set of parameters. | |
# In this case, the job will run once for each item in the 'language' array. Since there's only one item ('python'), the job will run once. | |
# The 'fail-fast: false' option means that all jobs will run to completion, even if one fails. | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'python' ] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@v2 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |