Files
pico-thermo/.woodpecker.yml
T
gballan 6c1dddc230
ci/woodpecker/push/woodpecker Pipeline failed
Fixing woodpecker config file name
2026-09-06 00:46:58 -04:00

14 lines
354 B
YAML

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 .