21 lines
368 B
YAML
21 lines
368 B
YAML
when:
|
|
- event: push
|
|
branch: main
|
|
- event: manual
|
|
|
|
steps:
|
|
sync:
|
|
image: ghcr.io/astral-sh/uv:alpine
|
|
commands:
|
|
- 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
|
|
|