Initial linting CI checks

This commit is contained in:
Liam Steckler 2024-02-10 20:43:40 -08:00
parent ceadea03ab
commit 113f6b1db6

10
.woodpecker/lint.yml Normal file
View file

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