diff --git a/.drone.yml b/.drone.yml index 7476343..8f038a9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,3 +1,17 @@ +--- +kind: pipeline +type: docker +name: python310 + +steps: +- name: build + image: python:3.10-slim + commands: + - id + - python -V + - apt update && apt install -y gcc g++ libicu-dev pkg-config git + - pip install -r requirements-dev.txt + --- kind: pipeline type: docker