You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cookiecutter-basic/{{cookiecutter.project_slug}}/.drone.yml

24 lines
369 B
YAML

1 year ago
kind: pipeline
type: docker
name: CI Test Pipeline
steps:
- name: greeting
image: alpine
commands:
- echo "Welcome to drone\n"
- name: Unit Tests
1 year ago
image: python:3.11-bullseye
1 year ago
commands:
- bash -c './scripts/run_unit_tests.sh'
1 year ago
trigger:
event:
- pull_request
1 year ago
- push
1 year ago
# Secrets used to pull private images
image_pull_secrets:
1 year ago
- dockerconfigjson