From 673cb7f1ef96787a6ba32261795560e1e82780bb Mon Sep 17 00:00:00 2001 From: Histausse Date: Sat, 20 May 2023 22:06:14 +0200 Subject: [PATCH] add ci --- .woodpecker.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .woodpecker.yml 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