Adding Woodpecker config

This commit is contained in:
2026-09-06 00:45:18 -04:00
parent c8bd72340c
commit 6970463ba8
+13
View File
@@ -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 .