20 lines
352 B
YAML
20 lines
352 B
YAML
when:
|
|
- event: push
|
|
branch: main
|
|
- event: manual
|
|
|
|
steps:
|
|
sync:
|
|
image: ghcr.io/astral-sh/uv:alpine
|
|
commands:
|
|
- uv sync
|
|
test:
|
|
image: ghcr.io/astral-sh/uv:alpine
|
|
commands:
|
|
- python -m pytest -s test/basic.py
|
|
build:
|
|
image: ghcr.io/astral-sh/uv:alpine
|
|
commands:
|
|
- uv build --wheel
|
|
- ls -l dist
|
|
|