Skip to content

Restructure project and add pyproject.toml for PyPI packaging. #28

Restructure project and add pyproject.toml for PyPI packaging.

Restructure project and add pyproject.toml for PyPI packaging. #28

Workflow file for this run

name: bandit
on:
push:
branches:
- stable
pull_request:
branches:
- stable
jobs:
security-check:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install Bandit
run: pip install bandit
- name: Run Bandit
run: bandit ./MetaDetective.py || true