diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..163f53b --- /dev/null +++ b/.drone.yml @@ -0,0 +1,17 @@ +kind: pipeline +type: docker +name: test & lint python code + + +trigger: + event: + - push + - pull_request + +steps: + - name: test & lint + image: python:3.12-alpine + commands: + - pip install poetry + - poetry install + - poetry run python3 main.py