From d3cb9a6750b24799a3dabe3cb7453b3fb988c6f4 Mon Sep 17 00:00:00 2001 From: first_admin Date: Sun, 8 Sep 2024 14:20:42 +0000 Subject: [PATCH] Add .drone.yml --- .drone.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..8d531eb --- /dev/null +++ b/.drone.yml @@ -0,0 +1,23 @@ +kind: pipeline +type: docker +name: default + +steps: + - name: build + image: node:14-alpine + commands: + - echo "Building the application..." + + - name: test + image: python:3.9 + depends_on: + - build + commands: + - echo "Running tests..." + + - name: deploy + image: ubuntu:20.04 + depends_on: + - test + commands: + - echo "Deploying the application..."