Ensure all three primary endpoints have subquery logic #317
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: Bandit Security Linting | |
on: [pull_request] | |
jobs: | |
bandit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install bandit | |
- name: Run Bandit | |
run: | | |
bandit -r middleware resources app.py database_client | |
- name: Upload Bandit results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: bandit-report | |
path: bandit_output.txt | |