tts-markup-utility/.drone.yml
Yandrik 152eb592f9
Some checks failed
continuous-integration/drone/push Build is failing
ci: add proper poetry image
2024-04-25 15:51:37 +02:00

34 lines
728 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: Unit Tests
image: weastur/poetry:latest-python-3.12
commands:
# - pip install poetry
- poetry config virtualenvs.create false
- poetry install
- poetry run pytest
- name: Python Code Lint
image: weastur/poetry:latest-python-3.12
commands:
# - pip install poetry
- poetry config virtualenvs.create false
- poetry install
- poetry run black .
- name: Static Type check
image: weastur/poetry:latest-python-3.12
commands:
# - pip install poetry
- poetry config virtualenvs.create false
- poetry install
- poetry run mypy .
- name: Deploy
image: weastur/poetry:latest-python-3.12
commands:
- echo "TODO"