ci(github): fix uv install
Python CI / ty (push) Successful in 46s
Python CI / ruff-format-check (push) Failing after 1m4s
Python CI / ruff (push) Successful in 2m2s
Python CI / coverage (push) Failing after 1m54s
Docker CI / build (push) Failing after 4m5s

This commit is contained in:
2026-04-29 09:24:31 +02:00
parent 0b39313f7e
commit e9be3c86ae
+8 -7
View File
@@ -1,12 +1,14 @@
name: Python CI
on: [push]
jobs:
on: [ push ]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: astral-sh/ruff-action@v3
with:
args: "check"
ruff-format-check:
runs-on: ubuntu-latest
steps:
@@ -18,15 +20,15 @@ jobs:
ty:
runs-on: ubuntu-latest
steps:
- run: python3 -m pip install uv
- run: python3 -m pip install uv --break-system-packages
- uses: actions/checkout@v5
- run: python3 -m uv sync
- run: python3 -m uv run ty check --output-format github
coverage:
runs-on: ubuntu-latest
steps:
- run: python3 -m pip install uv
- run: python3 -m pip install uv --break-system-packages
- uses: actions/checkout@v5
- run: python3 -m uv sync
- run: python3 -m uv run coverage run -m unittest -v
@@ -34,4 +36,3 @@ jobs:
- uses: irongut/CodeCoverageSummary@v1.3.0
with:
filename: coverage.xml