Add CI pipeline for variant 5
Some checks failed
CI / Lint / Ruff (push) Has been cancelled
CI / Test / Pytest coverage (push) Has been cancelled
CI / Build / Poetry package (push) Has been cancelled

This commit is contained in:
lilrax
2026-05-18 00:07:59 +03:00
commit 4544efe463
10 changed files with 477 additions and 0 deletions

14
README.md Normal file
View File

@@ -0,0 +1,14 @@
# Лабораторная работа: CI с GitHub Actions
Вариант 5: Python + ruff + pytest-cov + poetry build.
## Этапы CI
1. Lint — проверка кода через ruff.
2. Test — запуск тестов через pytest-cov.
3. Build — сборка проекта через poetry build.
## Запуск
poetry install --no-interaction
poetry run ruff check .
poetry run pytest
poetry build