initial commit
Some checks failed
CI / Run tests (push) Has been cancelled
CI / Docker build test (push) Has been cancelled
CI / Lint (ruff + mypy) (push) Has been cancelled

This commit is contained in:
2026-03-30 16:46:26 +07:00
commit 2a7dfa95c8
67 changed files with 5864 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
# ============================================================
# Auto format code
# ============================================================
name: Auto Format
on:
pull_request:
jobs:
format:
name: Format code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install formatter
run: pip install ruff
# Автоматическое форматирование
- name: Run formatter
run: ruff format .
# Проверка что после форматирования нет изменений
- name: Check formatting
run: ruff check .