From 7a0fd7f093ea3042fcaef576db8ff530ec9856da Mon Sep 17 00:00:00 2001 From: Lumpiasty Date: Thu, 2 Apr 2026 22:54:53 +0200 Subject: [PATCH] add test workflow --- .woodpecker/my-first-workflow.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .woodpecker/my-first-workflow.yaml diff --git a/.woodpecker/my-first-workflow.yaml b/.woodpecker/my-first-workflow.yaml new file mode 100644 index 0000000..28b8f4a --- /dev/null +++ b/.woodpecker/my-first-workflow.yaml @@ -0,0 +1,15 @@ +when: + - event: push + branch: main + +steps: + - name: build + image: debian + commands: + - echo "This is the build step" + - echo "echo hello world" > executable + - name: a-test-step + image: golang:1.16 + commands: + - echo "Testing ..." + - sh executable \ No newline at end of file