Files
python-utils/.gitea/workflows/security-audit.yml
T
Brian Bjarke Jensen b0df5c715c
Code Quality Pipeline / code-quality (pull_request) Failing after 51s
Test Python Package / test (pull_request) Failing after 3s
Type Check / type-check (pull_request) Failing after 2s
implemented reusable workflows
2025-08-28 20:09:58 +02:00

18 lines
338 B
YAML

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