From f46ea3f39354356306ac7d4279f5bab744c1e2b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Heinz-Alexander=20F=C3=BCtterer?= <35225576+afuetterer@users.noreply.github.com> Date: Thu, 5 Mar 2026 11:07:26 +0100 Subject: [PATCH] ci: switch to uv based project installation --- .github/workflows/testing.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index ca8892eb..92c2a7c0 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -26,14 +26,15 @@ jobs: python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + - uses: actions/checkout@v6 + - name: Install latest version of uv and set up Python ${{ matrix.python-version }} + uses: astral-sh/setup-uv@v7 with: python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -e ".[dev]" + activate-environment: "true" + - name: Install dependencies (including test group) + run: uv sync --extra test + - name: Display the project's dependency tree (including information on outdated packages) + run: uv tree --outdated - name: Run Checking Mechanisms run: make check