Fixing woodpecker config file name
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2026-09-06 00:46:58 -04:00
parent 6970463ba8
commit 6c1dddc230
+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 .