teilchensammler-cli/.woodpecker/workflow.yaml
bronsen 18c3af8939
Some checks failed
ci/woodpecker/push/workflow/1 Pipeline failed
ci/woodpecker/push/workflow/2 Pipeline failed
[ci] perhaps we cannot use :latest AND a specific python version
2025-12-05 17:49:55 +01:00

28 lines
519 B
YAML

when:
- event: push
branch: main
- event: pull_request
- event: tag
matrix:
PYTHON_VERSION:
- 3.14
- 3.13
# - 3.12
steps:
- name: Lint python code
image: pipelinecomponents/ruff
commands:
- ruff check .
- name: Lint markdown files
image: pipelinecomponents/markdownlint-cli2
commands:
- markdownlint-cli2 .
- name: Run Tests
image: ghcr.io/astral-uv/uv:python${PYTHON_VERSION}-trixie-slim
commands:
- uv install
- uv run pytest tests.py