Initial CI linting config
This commit is contained in:
parent
4dc532d953
commit
e7a725f318
1 changed files with 11 additions and 0 deletions
11
.woodpecker.yaml
Normal file
11
.woodpecker.yaml
Normal 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 .
|
Loading…
Reference in a new issue