Skip to content

fixed grafana plots, added example scripts for each of provided langs… #7

fixed grafana plots, added example scripts for each of provided langs…

fixed grafana plots, added example scripts for each of provided langs… #7

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