Skip to content

Sanitize API error details and add bandit CI #3

Sanitize API error details and add bandit CI

Sanitize API error details and add bandit CI #3

Workflow file for this run

name: Security
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
bandit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Set up Python
run: uv python install 3.12
- name: Install dependencies
run: uv sync --all-extras
- name: Run bandit security linter
run: uv run bandit -r tango/ -c pyproject.toml