Skip to content

feat: fixed sync/async situation; made email a BackgroundTask #46

feat: fixed sync/async situation; made email a BackgroundTask

feat: fixed sync/async situation; made email a BackgroundTask #46

Workflow file for this run

name: Python Bandit Security Check
on: [push]
jobs:
security-scan:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12.1"
- name: Cache uv
uses: actions/cache@v4
with:
path: ~/.cache/uv
key: ${{ runner.os }}-uv-${{ hashFiles('backend/uv.lock') }}
- name: Install uv
run: python -m pip install --upgrade pip uv
- name: Install dependencies
working-directory: backend
run: uv sync --frozen
- name: Run Bandit
working-directory: backend
run: uv run bandit -r api