From 3309ca4a0c95e9a7801eed06f8b39d23386d636a Mon Sep 17 00:00:00 2001 From: Paul Brinkmeier Date: Tue, 13 Sep 2022 03:02:14 +0200 Subject: [PATCH] Add python step --- .drone.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 2cad124..5ff0e22 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,8 +4,12 @@ type: docker name: default steps: - - name: test + - name: hello world image: alpine commands: - echo hello - echo world + - name: python + image: python + commands: + - python3 -c "print(6 * 7)"