Skip to content
Merged
Show file tree
Hide file tree
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
16 changes: 16 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -343,3 +343,19 @@ jobs:
- name: Run tests
working-directory: .github/workflows
run: pixi run test

uv-sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false

- name: Install uv
uses: astral-sh/setup-uv@bec219d24cd3e171d82865faccec33120bb574f4 # v10.1.0
with:
enable-cache: false
version: "0.12.13" # Released on 2026-09-10

# Ensure that dependencies and dependency groups are consistent and resolvable.
- run: uv sync --all-extras --all-groups --dry-run
Comment thread
mwtoews marked this conversation as resolved.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ docs/_build
dist/
.coverage
tests/packages/**/.wraplock
*.lock
2 changes: 2 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
#
# SPDX-License-Identifier: MIT

# 'pre-commit' is not a project dependency -- if needed, users may choose to install it

ci:
autofix_prs: false
autoupdate_commit_msg: 'MAINT: bump pre-commit dependencies'
Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ docs = [
'sphinx-design >= 0.1.0',
'sphinxext-opengraph >= 0.7.0',
]
# uv includes by default the dev dependency group in the environment
dev = [
{include-group = 'test'},
Comment thread
dnicolodi marked this conversation as resolved.
]
Comment thread
rgommers marked this conversation as resolved.
Comment thread
mwtoews marked this conversation as resolved.


[tool.mypy]
Expand Down
Loading