diff --git a/.drone.yml b/.drone.yml index e241f77..0eca407 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,8 +4,12 @@ type: docker name: default steps: -- name: greeting - image: golang:1.12 - commands: - - go build - - go test \ No newline at end of file + - name: build and test + image: python:3.9-slim + commands: + - pip install --no-cache-dir -r requirements.txt + - python app.py + +trigger: + branch: + - master \ No newline at end of file