Skip to content

updated documentation for loading python module #11

updated documentation for loading python module

updated documentation for loading python module #11

Workflow file for this run

name: Security Checks
on:
push:
pull_request:
types: [opened, synchronize, reopened]
jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install bandit safety
- name: Run bandit security check
run: |
bandit -r idstools --exit-zero || true
- name: Check for known vulnerabilities
run: |
pip install -e .
safety check --json || true