CodeQL #356
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: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
schedule: | |
- cron: "46 2 * * 5" | |
# Allow job to be triggered manually. | |
workflow_dispatch: | |
# Cancel in-progress jobs when pushing to the same branch. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
analyze: | |
name: "Analyze with SQLAlchemy ${{ matrix.sqla-version }}" | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ python ] | |
sqla-version: ['<1.4', '<1.5', '<2.1'] | |
steps: | |
- name: Acquire sources | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
architecture: x64 | |
cache: 'pip' | |
cache-dependency-path: | |
pyproject.toml | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
config-file: ./.github/codeql.yml | |
queries: +security-and-quality | |
#- name: Autobuild | |
# uses: github/codeql-action/autobuild@v2 | |
- name: Install project | |
run: | | |
pip install --editable=.[sqlalchemy,test] | |
pip install "sqlalchemy${{ matrix.sqla-version }}" --upgrade --pre | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:${{ matrix.language }}/sqla-version:${{ matrix.sqla-version }}" |