CodeQL #266
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
name: "CodeQL" | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [master] | |
schedule: | |
- cron: "26 1 * * 6" | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-22.04 | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: ["python"] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: APT Update | |
run: sudo apt-get update -y | |
- name: APT Install | |
run: sudo apt-get install -y libjpeg-dev | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: ${{ matrix.language }} | |
config-file: ./.github/codeql/codeql-config.yml | |
setup-python-dependencies: true | |
- name: Set CodeQL python | |
run: echo "CODEQL_PYTHON=$(which python)" >> $GITHUB_ENV | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |