Files
lab4/README.md
lilrax 4544efe463
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
Add CI pipeline for variant 5
2026-05-18 00:07:59 +03:00

15 lines
428 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Лабораторная работа: 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