This commit is contained in:
Robert Kaussow 2023-08-22 21:33:33 +02:00
parent 3a43a37cd4
commit 811d17a786
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
3 changed files with 32 additions and 2 deletions

View File

@ -71,4 +71,4 @@ steps:
depends_on:
- lint
# - test
- test

View File

@ -60,4 +60,4 @@ steps:
depends_on:
- lint
# - test
- test

30
.woodpecker/test.yml Normal file
View File

@ -0,0 +1,30 @@
---
when:
- event: [pull_request, tag]
- event: [push, manual]
branch:
- ${CI_REPO_DEFAULT_BRANCH}
matrix:
PYTHON_VERSION:
- 3.7
- 3.8
- 3.9
- 3.10
- 3.11
steps:
fetch:
image: docker.io/library/python:3.11
commands:
- git fetch -tq
# pytest:
# image: docker.io/library/python:${PYTHON_VERSION}
# commands:
# - pip install poetry poetry-dynamic-versioning -qq
# - poetry install
# - poetry version
# - poetry run git-batch --help
# environment:
# PY_COLORS: "1"