12 lines
172 B
YAML
12 lines
172 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: syntax
|
|
|
|
steps:
|
|
- name: syntax
|
|
pull: if-not-exists
|
|
image: python-3-7
|
|
commands:
|
|
- pip3 install -r requirements.txt
|
|
- pylint *.py
|