diff --git a/.drone.yml b/.drone.yml index b720960..f5b9966 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,10 +1,20 @@ kind: pipeline -type: docker +type: exec name: default +platform: + os: linux + arch: amd64 + steps: - - name: greets - image: python + - name: build commands: - docker build . + - name: test + commands: + - docker-compose up --build --abort-on-container-exit + - name: run + commands: + - docker-compose up --build -d +