Skip to content

fix: made the buttons option optional again #8

fix: made the buttons option optional again

fix: made the buttons option optional again #8

Workflow file for this run

name: Security
on:
workflow_dispatch:
push:
env:
PYTHON_VERSION: '3.12'
jobs:
bandit:
name: Bandit
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Poetry
run: |
pipx install poetry
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: poetry
- name: Set up Poetry environment
env:
PYTHON_VERSION: ${{ env.PYTHON_VERSION }}
run: |
poetry env use ${PYTHON_VERSION}
- name: Install Python dependencies
run: |
pip install poetry
make install
- name: Run Bandit
run: |
poetry run bandit -r mkdocs_exporter