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
7 changes: 2 additions & 5 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
permissions:
contents: write
pull-requests: write
env:
UV_PYTHON: ${{ matrix.python-version }}

strategy:
fail-fast: false
Expand All @@ -40,11 +42,6 @@ jobs:

- name: Install mise
uses: jdx/mise-action@146a28175021df8ca24f8ee1828cc2a60f980bd5 # v3
with:
# Workaround: Use `--env ci` to load mise.ci.toml which contains constant tools (uv).
# This allows us to override only the Python version via install-args without duplicating
# tool definitions.
install-args: "python@${{ matrix.python-version }} --env ci"

- name: Run unit tests
run: mise run ci:test:unit
Expand Down
3 changes: 0 additions & 3 deletions mise.ci.toml

This file was deleted.

3 changes: 2 additions & 1 deletion mise.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[tools]
python = "3.14.2"
# reuse UV_PYTHON from the CI environment to avoid installing two versions of Python (performance)
python = "{{ get_env(name='UV_PYTHON', default='3.14.2') }}"
uv = "0.9.21"

# https://mise.jdx.dev/mise-cookbook/python.html#mise-uv
Expand Down
3 changes: 1 addition & 2 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
"matchPackageNames": [
"uv",
"uv_build",
"astral-sh/uv",
"astral-sh/setup-uv"
"astral-sh/uv"
]
}
]
Expand Down