14 lines
278 B
YAML
14 lines
278 B
YAML
|
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
|