Initial upload with CI/CD workflow
Some checks failed
CI / lint (push) Has been cancelled
Lint / lint (push) Has been cancelled
CI / test (push) Has been cancelled
Security / security (push) Has been cancelled

This commit is contained in:
2026-01-31 11:08:03 +00:00
parent 1e7bec31b1
commit 8cc9eec8e2

View File

@@ -0,0 +1,26 @@
name: Security
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install security tools
run: |
pip install bandit safety
- name: Run bandit
run: |
bandit -r shellgen/
- name: Run safety
run: |
safety check -r requirements.txt