ci-playground/.drone.yml
2022-09-13 03:02:14 +02:00

16 lines
229 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: hello world
image: alpine
commands:
- echo hello
- echo world
- name: python
image: python
commands:
- python3 -c "print(6 * 7)"