Files
python-utils/.gitea/workflows/security-audit.yml
T
Brian Bjarke Jensen 95a8a29e2f
Code Quality Pipeline / code-quality (push) Failing after 2m6s
Test Python Package / test (push) Failing after 15s
Type Check / type-check (push) Failing after 14s
initial commit
2025-08-27 22:42:09 +02:00

31 lines
602 B
YAML

name: Security Audit
on:
schedule:
- cron: "0 0 * * 0" # Weekly
workflow_dispatch:
jobs:
safety:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ vars.PYTHON_VERSION }}
- name: Install uv
run: pip install uv
- name: Install safety
run: pip install safety
- name: Install dependencies
run: uv pip install --group dev --system
- name: Run safety check
run: safety check