123
Some checks failed
CI / Lint (ruff + mypy) (push) Failing after 34s
CI / Run tests (push) Has been skipped
CI / Docker build test (push) Successful in 13s

This commit is contained in:
2026-04-02 18:04:04 +07:00
commit 02afbd23ec
31 changed files with 2624 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
# ============================================================
# Security checks
# Проверка уязвимостей зависимостей
# ============================================================
name: Security
on:
schedule:
- cron: "0 3 * * 1"
workflow_dispatch:
jobs:
security-scan:
name: Dependency security scan
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Установка Python
- uses: actions/setup-python@v5
with:
python-version: "3.12"
# Установка инструмента проверки
- name: Install pip-audit
run: pip install pip-audit
# Проверка зависимостей
- name: Run security audit
run: pip-audit