Skip to content
This repository has been archived by the owner on Jan 19, 2025. It is now read-only.

Merge branch 'master' of https://github.com/Immunity-IAST/immunity-py… #18

Merge branch 'master' of https://github.com/Immunity-IAST/immunity-py…

Merge branch 'master' of https://github.com/Immunity-IAST/immunity-py… #18

Workflow file for this run

name: Bandit SAST
on:
push:
branches:
- 'master'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install bandit
- name: Analysing the code with bandit
run: |
cd immunity_agent && bandit -r .