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 +