mirror of
https://github.com/thegeeklab/ansible-doctor.git
synced 2024-11-05 12:50:44 +00:00
Robert Kaussow
d6ce15fc00
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
31 lines
649 B
YAML
31 lines
649 B
YAML
---
|
|
when:
|
|
- event: [pull_request, tag]
|
|
- event: [push, manual]
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
matrix:
|
|
PYTHON_VERSION:
|
|
- docker.io/library/python:3.8
|
|
- docker.io/library/python:3.9
|
|
- docker.io/library/python:3.10
|
|
- docker.io/library/python:3.11
|
|
- docker.io/library/python:3.12
|
|
|
|
steps:
|
|
fetch:
|
|
image: docker.io/library/python:3.12
|
|
commands:
|
|
- git fetch -tq
|
|
|
|
pytest:
|
|
image: ${PYTHON_VERSION}
|
|
commands:
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
- poetry install
|
|
- poetry version
|
|
- poetry run ${CI_REPO_NAME} --help
|
|
environment:
|
|
PY_COLORS: "1"
|