diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..a2b727f --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,15 @@ +pipeline: + test: + image: python:${PYTHON_VERSION} + pull: true + environment: + - POETRY_VIRTUALENVS_IN_PROJECT=true + commands: + - pip install poetry + - poetry install + - poetry run pytest + +matrix: + PYTHON_VERSION: + - 3.10 + - 3.11