test-woodpecker-python/.woodpecker/build.yaml

24 lines
413 B
YAML
Raw Normal View History

2025-06-20 19:03:22 +02:00
when:
- event: push
branch: main
2025-06-21 14:52:59 +02:00
- event: manual
2025-06-20 19:03:22 +02:00
steps:
2025-06-21 14:52:59 +02:00
sync:
2025-06-20 19:24:43 +02:00
image: ghcr.io/astral-sh/uv:alpine
2025-06-21 15:17:58 +02:00
environment:
UV_CACHE_DIR: .uv-cache
2025-06-20 19:03:22 +02:00
commands:
2025-06-21 14:52:59 +02:00
- uv sync
2025-06-21 15:17:58 +02:00
- ls -l
2025-06-21 14:52:59 +02:00
test:
image: ghcr.io/astral-sh/uv:alpine
commands:
2025-06-21 15:09:53 +02:00
- python -m pytest -s test/basic.py
2025-06-21 14:52:59 +02:00
build:
image: ghcr.io/astral-sh/uv:alpine
commands:
- uv build --wheel
- ls -l dist
2025-06-20 19:03:22 +02:00