WIP: implement basic ci pipeline #4

Draft
mightyBroccoli wants to merge 6 commits from droneci into master
1 changed files with 10 additions and 0 deletions

10
.woodpecker.yml Normal file
View File

@ -0,0 +1,10 @@
pipeline:
lint:
image: debian
commands:
- apt update && apt install python3-pip --yes
- pip install -r requirements.txt
- pip install flake8 black
- flake8 --select=E9,F63,F7,F82 --show-source
- black . --check
- flake8 --show-source