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

22 lines
368 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
- echo hi
- uv sync
test:
image: ghcr.io/astral-sh/uv:alpine
commands:
- .venv.bin/pytest -s test/basic.py
build:
image: ghcr.io/astral-sh/uv:alpine
commands:
- uv build --wheel
- ls -l dist
2025-06-20 19:03:22 +02:00