Convert dependency management to uv

This commit is contained in:
Janik Besendorf
2026-05-03 16:04:12 +02:00
parent c2b0b6db28
commit c1336b53f2
16 changed files with 1926 additions and 43 deletions
+5 -2
View File
@@ -16,14 +16,17 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
make install
make test-requirements
uv sync --locked --group dev --python ${{ matrix.python-version }}
- name: Test with pytest
run: |
set -o pipefail