feat: улучшить agentic-readiness — добавить CI, проверки конфигурации и тесты

This commit is contained in:
Marat Kharitonov
2026-07-06 22:18:12 +03:00
parent 2b695aed82
commit 3818c2db29
6 changed files with 251 additions and 133 deletions
@@ -0,0 +1,28 @@
name: "Continuous Integration"
on:
push:
branches:
- main
pull_request:
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: make install dev
- name: Lint (ruff)
run: make lint
- name: Test (pytest)
run: make test