ci(release): fix tag env, upgrade actions, add release permissions
Test / test (push) Successful in 1m10s

This commit is contained in:
2026-07-26 23:35:30 +02:00
parent a5c1b519ed
commit d9b7a53ac2
3 changed files with 24 additions and 28 deletions
+6 -3
View File
@@ -1,3 +1,6 @@
# Test — Python. Runs on push and pull request to development. Never on main.
# The 80 % coverage gate lives in pyproject.toml (addopts --cov-fail-under=80),
# so `uv run pytest` enforces it here exactly as it does locally.
name: Test
on:
@@ -11,12 +14,12 @@ jobs:
test:
runs-on: fedora
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Set up Python and uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v6
with:
python-version: "3.14"
python-version: "3.14" # match requires-python in pyproject.toml
enable-cache: true
cache-dependency-glob: "uv.lock"