Skip to content

increased limits, added busybox container to speed up cold starts, re… #6

increased limits, added busybox container to speed up cold starts, re…

increased limits, added busybox container to speed up cold starts, re… #6

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@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install bandit safety
- name: Run bandit
run: bandit -r backend/ -x backend/tests/ -ll