Add CI configuration for pylint & flake8 tests

This commit is contained in:
Benjamin Renard 2022-05-02 16:14:11 +02:00
parent b0ecbb6fbc
commit 9813621c3c

13
.woodpecker.yml Normal file
View file

@ -0,0 +1,13 @@
pipeline:
test-pylint:
group: test
image: pipelinecomponents/pylint
commands:
- python3 -m pip install debian-parser
- pylint entrypoint.py
test-flake8:
group: test
image: pipelinecomponents/flake8
commands:
- flake8 entrypoint.py