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

21 lines
352 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-20 19:03:22 +02:00
commands:
2025-06-21 14:52:59 +02:00
- uv sync
test:
image: ghcr.io/astral-sh/uv:alpine
commands:
2025-06-21 15:01:06 +02:00
- .venv/bin/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