Files
py-demo/.woodpecker.yml
Brian Rosner bb765d279c
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci: add woodpecker pipeline (lint + test)
2026-03-22 10:31:01 -06:00

15 lines
286 B
YAML

labels:
platform: linux/amd64
steps:
- name: lint
image: ghcr.io/astral-sh/uv:python3.13-alpine
commands:
- uv run ruff check .
- uv run ruff format --check .
- name: test
image: ghcr.io/astral-sh/uv:python3.13-alpine
commands:
- uv run pytest