unreviewed_code/.drone.yml

24 lines
392 B
YAML
Raw Normal View History

2024-09-08 14:20:42 +00:00
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..."