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
Oscar Pocock f35bd80767
Some checks failed
ci/woodpecker/push/lint Pipeline failed
ci/woodpecker/push/test Pipeline failed
Packaged autophotographer and added tests and test pipelines
2022-04-28 22:17:20 +01:00

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