Skip to content

Replace state/county/location search parameters with location_id as search parameter #364

Replace state/county/location search parameters with location_id as search parameter

Replace state/county/location search parameters with location_id as search parameter #364

Workflow file for this run

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.12'
- 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