Add CI configuration for pylint & flake8 tests
This commit is contained in:
parent
b0ecbb6fbc
commit
9813621c3c
1 changed files with 13 additions and 0 deletions
13
.woodpecker.yml
Normal file
13
.woodpecker.yml
Normal 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
|
Loading…
Reference in a new issue