feat: Upgrade to uv and Python 3.12
Test and coverage / build (push) Failing after 4m23s

This commit is contained in:
2026-06-27 22:34:50 +03:00
parent db1f6f421a
commit fd88aabe46
17 changed files with 749 additions and 60 deletions
+6 -6
View File
@@ -9,15 +9,15 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Set up Python 3.9
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: "3.12"
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install dependencies
run: pip install -r requirements.txt -r requirements.dev.txt
run: uv sync --frozen
- name: Run tests and collect coverage
run: |
pytest --cov=src tests
coverage xml
run: make coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2