17 lines
No EOL
339 B
YAML
17 lines
No EOL
339 B
YAML
pipeline:
|
|
flake8:
|
|
image: python:3.8
|
|
commands:
|
|
- python3.8 -m pip install flake8
|
|
- flake8 src/
|
|
mypy:
|
|
image: python:3.8
|
|
commands:
|
|
- python3.8 -m pip install mypy
|
|
- mypy src/
|
|
isort:
|
|
image: python:3.8
|
|
commands:
|
|
- python3.8 -m pip install isort
|
|
- isort --diff src/
|
|
branches: dev |