Skip to content

chore: speed-up of CI tests #342

chore: speed-up of CI tests

chore: speed-up of CI tests #342

Workflow file for this run

name: Security Scanning
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
workflow_dispatch:
jobs:
security-scan:
name: Security Scanning
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
cache-dependency-glob: "backend/uv.lock"
- name: Install bandit
run: uv tool install bandit
- name: Run bandit
run: uv tool run bandit -r backend/ -x backend/tests/ -ll