add ci
ci/woodpecker/push/woodpecker Pipeline was successful Details

main
Histausse 2023-05-20 22:06:14 +02:00
parent 1bc17e8f25
commit 673cb7f1ef
1 changed files with 15 additions and 0 deletions

15
.woodpecker.yml Normal file
View File

@ -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