Initial CI linting config
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/manual/woodpecker Pipeline was successful

This commit is contained in:
Liam Steckler 2024-02-10 19:03:48 -08:00
parent 4dc532d953
commit e7a725f318

11
.woodpecker.yaml Normal file
View file

@ -0,0 +1,11 @@
steps:
lint:
image: python:3-alpine
when:
event: pull_request
branch: main
commands:
- python -m pip install --upgrade pip
- python -m pip install -r requirements.txt
- python -m pip install ruff
- ruff check .