From b1b7e5d1f3a589225b0eab25bc4bcdca3a0785d1 Mon Sep 17 00:00:00 2001 From: Sergey Vanyushkin Date: Fri, 8 May 2026 22:11:34 +0300 Subject: [PATCH] ci: switch to python:3.13 full image with git and bash --- .woodpecker/pipeline.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.woodpecker/pipeline.yml b/.woodpecker/pipeline.yml index 42f6cd4..14e19a9 100644 --- a/.woodpecker/pipeline.yml +++ b/.woodpecker/pipeline.yml @@ -4,14 +4,13 @@ when: steps: - name: deps - image: python:3.13-slim + image: python:3.13 volumes: - /tmp/uv-cache:/root/.cache/uv environment: UV_CACHE_DIR: /root/.cache/uv commands: - pip install uv - - apt-get update && apt-get install -y git - cd .. - | cat > pyproject.toml << 'EOF' @@ -29,7 +28,7 @@ steps: - uv sync --no-dev --group lints --group tests --group types - name: lint - image: python:3.13-slim + image: python:3.13 volumes: - /tmp/uv-cache:/root/.cache/uv environment: @@ -42,7 +41,7 @@ steps: - uv run isort --check-only . - name: type - image: python:3.13-slim + image: python:3.13 volumes: - /tmp/uv-cache:/root/.cache/uv environment: @@ -53,7 +52,7 @@ steps: - uv run mypy . - name: test-unit - image: python:3.13-slim + image: python:3.13 volumes: - /tmp/uv-cache:/root/.cache/uv environment: