Add python step

This commit is contained in:
Paul Brinkmeier 2022-09-13 03:02:14 +02:00
parent a85835c4d8
commit 3309ca4a0c

View File

@ -4,8 +4,12 @@ type: docker
name: default name: default
steps: steps:
- name: test - name: hello world
image: alpine image: alpine
commands: commands:
- echo hello - echo hello
- echo world - echo world
- name: python
image: python
commands:
- python3 -c "print(6 * 7)"