From c7ec493d90cc433c70a34e45531f44198b732a9b Mon Sep 17 00:00:00 2001 From: phil Date: Fri, 20 Jun 2025 19:03:22 +0200 Subject: [PATCH] T1 --- .woodpecker/build.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .woodpecker/build.yaml diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml new file mode 100644 index 0000000..83dfc22 --- /dev/null +++ b/.woodpecker/build.yaml @@ -0,0 +1,16 @@ +when: + - event: push + branch: main + +steps: + - name: build + image: alpine + commands: + - echo "This is the build step" + - echo "echo Foo" > executable + - name: a-test-step + image: alpine + commands: + - echo "Testing ..." + - ./executable +