test-woodpecker-python/.woodpecker/build.yaml
phil 8aaa584835
All checks were successful
ci/woodpecker/push/build Pipeline was successful
t5
2025-06-20 19:09:34 +02:00

18 lines
322 B
YAML

when:
- event: push
branch: main
steps:
- name: build
image: alpine
commands:
- echo "This is the build step"
- echo "echo Foo" > executable
- chmod a+x executable
- name: a-test-step
image: alpine
commands:
- echo "Testing ..."
- ./executable
- echo "Yes!"