Update lint config

This commit is contained in:
Liam Steckler 2024-02-10 20:10:31 -08:00
parent bd1ba5b07a
commit 483ed105c3

12
woodpecker/lint.yml Normal file
View file

@ -0,0 +1,12 @@
when:
- event: pull_request
- event: push
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 .