Files
python-utils/.gitea/workflows/security-audit.yml
T
Brian Bjarke Jensen 2fe23cc438
Code Quality Pipeline / code-quality (pull_request) Failing after 3s
Test Python Package / test (pull_request) Failing after 3s
Type Check / type-check (pull_request) Failing after 3s
added descriptive job names
2025-08-28 20:15:44 +02:00

19 lines
385 B
YAML

name: Security Audit
on:
schedule:
- cron: "0 0 * * 0" # Weekly
workflow_dispatch:
jobs:
safety:
runs-on: ubuntu-latest
steps:
- name: Setup Python and UV dependencies
uses: ./.gitea/workflows/setup-python-uv-dependencies.yml
with:
python-version: ${{ vars.PYTHON_VERSION }}
- name: Run safety check
run: safety check