chore: update dependencies and license, refine local CI script for comprehensive checks
All checks were successful
CI / test (3.13) (push) Successful in 1m30s
Publish to TestPyPI / build-publish (release) Has been skipped
Publish to PyPI / build-publish (release) Successful in 34s

This commit is contained in:
Alexander Kalinovsky
2025-09-08 19:03:36 +03:00
parent 99d8002e27
commit 7fa51bda6b
5 changed files with 42 additions and 59 deletions

View File

@@ -71,12 +71,12 @@ jobs:
- name: Ruff (lint + format check)
run: |
uv run ruff check src/ tests/
uv run ruff format --check src/ tests/
uv run ruff check
uv run ruff format --check
- name: MyPy
run: |
uv run mypy src/ tests/
uv run mypy .
- name: Pytest
run: |
uv run pytest tests/ --cov=src/quickbot_cli --cov-report=term-missing --cov-report=html -v