opdb/.woodpecker.yml

34 lines
592 B
YAML
Raw Normal View History

pipeline:
flake8:
group: lint
2022-09-17 21:35:48 +00:00
image: python:3.9
commands:
- pip3 install flake8
- make flake8
2022-09-17 21:35:48 +00:00
pylint:
group: lint
2022-09-17 21:35:48 +00:00
image: cytopia/pylint
commands:
2022-09-17 21:35:48 +00:00
- pylint opdb/
black:
group: lint
image: pyfound/black:22.8.0
commands:
- black --check opdb/
2022-09-17 21:35:48 +00:00
test-py3.9:
group: test
image: python:3.9
commands:
- pip3 install mypy .[testing]
- make mypy
- make pytest
test-py3.10:
group: test
image: python:3.10
commands:
2022-09-17 21:35:48 +00:00
- pip3 install mypy .[testing]
- make mypy
- make pytest