Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,13 @@ jobs:
run: uv run mypy .

test:
name: Test Python ${{ matrix.python-version }}
name: Test Python ${{ matrix.python-version }} - ${{ matrix.resolution }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
resolution: [highest, lowest]
Copy link

Copilot AI Dec 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The value 'lowest' may not be a valid resolution strategy for uv. Based on uv's documentation, the valid values for the --resolution flag are 'highest' and 'lowest-direct', not 'lowest'. Consider changing this to 'lowest-direct' to ensure the CI correctly tests with the lowest compatible dependency versions.

Suggested change
resolution: [highest, lowest]
resolution: [highest, lowest-direct]

Copilot uses AI. Check for mistakes.

steps:
- name: Check out repository code
Expand All @@ -44,7 +45,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: uv sync --dev
run: uv sync --dev --resolution=${{ matrix.resolution }}

- name: Run tests
run: uv run pytest
Loading