From bb765d279c256c05474a4e8b5bcba27a710cf4b8 Mon Sep 17 00:00:00 2001 From: Brian Rosner Date: Sun, 22 Mar 2026 10:31:00 -0600 Subject: [PATCH] ci: add woodpecker pipeline (lint + test) --- .woodpecker.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..6804764 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,14 @@ +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