git-batch/.woodpecker/test.yml

40 lines
804 B
YAML
Raw Normal View History

2023-08-22 21:49:57 +02:00
---
when:
- event: [pull_request, tag]
- event: [push, manual]
branch:
- ${CI_REPO_DEFAULT_BRANCH}
2024-02-09 23:08:33 +01:00
- renovate/auto/*
2023-08-22 21:49:57 +02:00
variables:
- &pytest_base
group: pytest
2023-08-22 21:49:57 +02:00
commands:
- pip install poetry poetry-dynamic-versioning -qq
- poetry install
- poetry version
2023-08-24 22:35:47 +02:00
- poetry run ${CI_REPO_NAME} --help
2023-08-22 21:49:57 +02:00
environment:
PY_COLORS: "1"
steps:
- name: python-312
image: docker.io/library/python:3.12
<<: *pytest_base
- name: python-311
image: docker.io/library/python:3.11
<<: *pytest_base
- name: python-310
image: docker.io/library/python:3.10
<<: *pytest_base
- name: python-39
image: docker.io/library/python:3.9
<<: *pytest_base
- name: python-38
image: docker.io/library/python:3.8
<<: *pytest_base