12 lines
No EOL
230 B
YAML
12 lines
No EOL
230 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/
|
|
+branches: dev |