🔒️(ci) install every Python job through uv

lint-git runs gitlint through uvx, which fetches it for that one command and
puts nothing in the runner's Python. lint-summary and test-summary sync from a
new src/summary/uv.lock, so the versions those jobs resolve are the versions in
the tree, which is what src/backend and src/agents already do. The agents sync
refuses source distributions, since that package installs no project of its own.

Follows suitenumerique/menshen#73.
This commit is contained in:
davd-gzl
2026-08-25 18:48:09 +00:00
committed by aleb_the_flash
parent a0dbfa9357
commit fbeb035f50
3 changed files with 1908 additions and 13 deletions
+16 -13
View File
@@ -31,12 +31,12 @@ jobs:
if: always() if: always()
run: | run: |
! git log | grep 'fixup!' ! git log | grep 'fixup!'
- name: Install gitlint - name: Install uv
if: always() if: always()
run: "pip install --user --only-binary=:all: requests==2.34.2 gitlint-core==0.19.1" uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
- name: Lint commit messages added to main - name: Lint commit messages added to main
if: always() if: always()
run: ~/.local/bin/gitlint --commits origin/${{ github.event.pull_request.base.ref }}..HEAD run: uvx --no-build --from gitlint-core==0.19.1 gitlint --commits origin/${{ github.event.pull_request.base.ref }}..HEAD
check-changelog: check-changelog:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -153,7 +153,7 @@ jobs:
- name: Install uv - name: Install uv
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0 uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
- name: Install the project - name: Install the project
run: uv sync --locked --all-extras run: uv sync --locked --all-extras --no-build
- name: Check code formatting with ruff - name: Check code formatting with ruff
run: uv run --no-sync --no-build ruff format . --diff run: uv run --no-sync --no-build ruff format . --diff
- name: Lint code with ruff - name: Lint code with ruff
@@ -173,13 +173,14 @@ jobs:
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0 uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with: with:
python-version: "3.13" python-version: "3.13"
cache: "pip" - name: Install uv
- name: Install development dependencies uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
run: "pip install --user --only-binary=:all: .[dev]" - name: Install the project
run: uv sync --locked --all-extras
- name: Check code formatting with ruff - name: Check code formatting with ruff
run: ~/.local/bin/ruff format . --diff run: uv run --no-sync --no-build ruff format . --diff
- name: Lint code with ruff - name: Lint code with ruff
run: ~/.local/bin/ruff check . run: uv run --no-sync --no-build ruff check .
test-back: test-back:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -333,13 +334,15 @@ jobs:
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0 uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with: with:
python-version: "3.13" python-version: "3.13"
cache: "pip"
- name: Install development dependencies - name: Install uv
run: "pip install --user --only-binary=:all: .[dev]" uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
- name: Install the project
run: uv sync --locked --all-extras
- name: Run summary tests - name: Run summary tests
run: ~/.local/bin/pytest run: uv run --no-sync --no-build pytest
lint-front: lint-front:
runs-on: ubuntu-latest runs-on: ubuntu-latest
+1
View File
@@ -2,6 +2,7 @@
[project] [project]
name = "summary" name = "summary"
version = "1.29.0" version = "1.29.0"
requires-python = ">=3.13"
dependencies = [ dependencies = [
"fastapi[standard]>=0.105.0", "fastapi[standard]>=0.105.0",
"uvicorn>=0.24.0", "uvicorn>=0.24.0",
+1891
View File
File diff suppressed because it is too large Load Diff