Add woodpecker ci file

Added basic continuous integration tests to run on any push.
This commit is contained in:
Marty Oehme 2022-01-18 18:08:24 +01:00
parent b0f8c48e99
commit d958956f8d
Signed by: Marty
GPG key ID: B7538B8F50A1C800

23
.woodpecker.yml Normal file
View file

@ -0,0 +1,23 @@
pipeline:
unit_tests:
image: mquade/poetry:3.9-1.1.11
commands:
- poetry config virtualenvs.create false
- poetry install
- pytest
code_lint:
image: mquade/poetry:3.9-1.1.11
commands:
- poetry config virtualenvs.create false
- poetry install
- pip install black
- black .
static_analysis:
image: mquade/poetry:3.9-1.1.11
commands:
- poetry config virtualenvs.create false
- poetry install
- pip install mypy
- mypy .