From 6970463ba87d0033f2298b7a947b20301181fed7 Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Sun, 6 Sep 2026 00:45:18 -0400 Subject: [PATCH] Adding Woodpecker config --- .woodpecker.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .woodpecker.yaml diff --git a/.woodpecker.yaml b/.woodpecker.yaml new file mode 100644 index 0000000..55893ea --- /dev/null +++ b/.woodpecker.yaml @@ -0,0 +1,13 @@ +when: + event: [push, pull_request] + +steps: + lint: + image: python:3.12-alpine + commands: + # Install Ruff (extremely fast linter) + - pip install --no-cache-dir ruff + # Check syntax and undefined names/variables across your Python files + - ruff check . + # Optional: Check formatting compliance + - ruff format --check .