This repository has been archived on 2022-07-15. You can view files and clone it, but cannot push or open issues or pull requests.
mmp-osp1/.woodpecker/.lint.yml

17 lines
339 B
YAML
Raw Permalink Normal View History

2022-04-24 10:30:14 +01:00
pipeline:
flake8:
image: python:3.8
commands:
- python3.8 -m pip install flake8
2022-04-24 10:34:11 +01:00
- 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